NC18264. 斐波那契
描述
输入描述
一个整数n
输出描述
一个整数,表示答案
示例1
输入:
4
输出:
1
pypy3 解法, 执行用时: 146ms, 内存消耗: 28220K, 提交时间: 2022-01-08 02:55:29
n = int(input()) print(1 if n % 2 == 0 else -1)
Python(2.7.3) 解法, 执行用时: 76ms, 内存消耗: 3160K, 提交时间: 2018-08-31 18:32:45
print -1 if input() % 2 else 1
Python3(3.9) 解法, 执行用时: 110ms, 内存消耗: 4716K, 提交时间: 2022-02-17 14:08:01
print((-1)**(int(input())%2))