結果

問題 No.64 XORフィボナッチ数列
ユーザー tubo28tubo28
提出日時 2015-04-08 16:44:32
言語 Ruby
(3.3.0)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 63 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 11,488 KB
実行使用メモリ 15,348 KB
最終ジャッジ日時 2023-09-17 18:37:35
合計ジャッジ時間 3,131 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
15,084 KB
testcase_01 AC 80 ms
15,156 KB
testcase_02 AC 79 ms
15,176 KB
testcase_03 AC 79 ms
15,296 KB
testcase_04 AC 80 ms
15,172 KB
testcase_05 AC 79 ms
15,296 KB
testcase_06 AC 79 ms
15,320 KB
testcase_07 AC 80 ms
15,180 KB
testcase_08 AC 79 ms
15,180 KB
testcase_09 AC 79 ms
15,132 KB
testcase_10 AC 79 ms
15,252 KB
testcase_11 AC 80 ms
15,132 KB
testcase_12 AC 78 ms
15,348 KB
testcase_13 AC 80 ms
15,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a,b,n = gets.chomp.split.map(&:to_i)
c = a^b
puts [a,b,c][n%3]
0