結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー | face4 |
提出日時 | 2018-04-22 18:58:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 414 bytes |
コンパイル時間 | 502 ms |
コンパイル使用メモリ | 64,160 KB |
実行使用メモリ | 13,880 KB |
最終ジャッジ日時 | 2024-06-27 07:01:18 |
合計ジャッジ時間 | 7,193 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
#include<iostream> using namespace std; int main(){ long long f0,f1,f2,n; cin >> f0 >> f1 >> n; if(n < 2){ if(n == 0){ cout << f0 << endl; }else{ cout << f1 << endl; } return 0; } long long now = 2; while(now != n+1){ f2 = f0^f1; f0 = f1; f1 = f2; now++; } cout << f1 << endl; return 0; }