結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー | DrDrpilot |
提出日時 | 2022-09-06 15:48:31 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 55 ms / 5,000 ms |
コード長 | 633 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 82,848 KB |
実行使用メモリ | 61,184 KB |
最終ジャッジ日時 | 2024-11-21 16:58:20 |
合計ジャッジ時間 | 1,648 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
60,672 KB |
testcase_01 | AC | 52 ms
60,288 KB |
testcase_02 | AC | 51 ms
60,544 KB |
testcase_03 | AC | 52 ms
60,416 KB |
testcase_04 | AC | 50 ms
60,288 KB |
testcase_05 | AC | 52 ms
61,184 KB |
testcase_06 | AC | 51 ms
60,544 KB |
testcase_07 | AC | 55 ms
60,928 KB |
testcase_08 | AC | 50 ms
60,288 KB |
testcase_09 | AC | 51 ms
60,416 KB |
testcase_10 | AC | 51 ms
60,288 KB |
testcase_11 | AC | 52 ms
60,544 KB |
testcase_12 | AC | 53 ms
60,416 KB |
testcase_13 | AC | 50 ms
60,544 KB |
ソースコード
def I():return int(input()) def MAP():return map(int,input().split()) def MAPs():return map(str,input().split()) def LI(): return list(map(int,input().split())) def TPL(): return tuple(map(int,input().split())) def S():return input() from collections import defaultdict,Counter,deque from copy import deepcopy from heapq import heapify,heappop,heappush from bisect import bisect_left,bisect_right from itertools import accumulate,product,permutations,combinations from math import gcd,ceil,floor,sqrt inf=float('inf');mod=998244353;Mod=10**9+7 f0,f1,n=MAP() if n%3==0: print(f0) elif n%3==1: print(f1) else: print(f0^f1)