結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー | bluemegane |
提出日時 | 2018-09-22 09:30:54 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 21 ms / 5,000 ms |
コード長 | 406 bytes |
コンパイル時間 | 743 ms |
コンパイル使用メモリ | 106,812 KB |
実行使用メモリ | 25,996 KB |
最終ジャッジ日時 | 2024-07-18 08:53:07 |
合計ジャッジ時間 | 1,525 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
23,732 KB |
testcase_01 | AC | 21 ms
25,944 KB |
testcase_02 | AC | 20 ms
24,032 KB |
testcase_03 | AC | 21 ms
23,944 KB |
testcase_04 | AC | 20 ms
25,996 KB |
testcase_05 | AC | 20 ms
23,948 KB |
testcase_06 | AC | 20 ms
24,028 KB |
testcase_07 | AC | 21 ms
23,772 KB |
testcase_08 | AC | 21 ms
24,028 KB |
testcase_09 | AC | 20 ms
24,072 KB |
testcase_10 | AC | 20 ms
23,984 KB |
testcase_11 | AC | 20 ms
25,856 KB |
testcase_12 | AC | 20 ms
25,996 KB |
testcase_13 | AC | 20 ms
23,772 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; public class Hello { public static void Main() { string[] line = Console.ReadLine().Trim().Split(' '); var f0 = long.Parse(line[0]); var f1 = long.Parse(line[1]); var n = long.Parse(line[2]); long ans; if (n % 3 == 0) ans = f0; else if (n % 3 == 1) ans = f1; else ans = f0 ^ f1; Console.WriteLine(ans); } }