結果
| 問題 |
No.64 XORフィボナッチ数列
|
| コンテスト | |
| ユーザー |
bayashiko_r
|
| 提出日時 | 2018-11-14 00:57:59 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 29 ms / 5,000 ms |
| コード長 | 537 bytes |
| コンパイル時間 | 1,244 ms |
| コンパイル使用メモリ | 109,456 KB |
| 実行使用メモリ | 17,792 KB |
| 最終ジャッジ日時 | 2024-12-24 13:33:23 |
| 合計ジャッジ時間 | 2,282 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
class Program {
static void Main(string[] args) {
//入力
string s = Console.ReadLine();
string[] t = s.Split(' ');
//数字の割り当て
long F0 = long.Parse(t[0]);
long F1 = long.Parse(t[1]);
long N = long.Parse(t[2]);
//Nのmodで場合分け
if (N % 3 == 0) {
Console.WriteLine(F0);
} else if (N % 3 == 1) {
Console.WriteLine(F1);
} else {
Console.WriteLine(F0 ^ F1);
}
}
}
bayashiko_r