結果

問題 No.64 XORフィボナッチ数列
ユーザー うわばみうわばみ
提出日時 2020-04-29 20:16:43
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 519 bytes
コンパイル時間 1,108 ms
コンパイル使用メモリ 113,788 KB
実行使用メモリ 27,176 KB
最終ジャッジ日時 2024-05-07 04:30:27
合計ジャッジ時間 2,576 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
22,832 KB
testcase_01 AC 28 ms
25,004 KB
testcase_02 AC 27 ms
27,176 KB
testcase_03 AC 28 ms
25,132 KB
testcase_04 AC 27 ms
25,004 KB
testcase_05 AC 28 ms
25,100 KB
testcase_06 AC 28 ms
24,880 KB
testcase_07 AC 27 ms
25,004 KB
testcase_08 AC 29 ms
25,136 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 27 ms
25,216 KB
testcase_13 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Text;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main()
    {
        long[] n = Console.ReadLine().Split().Select(a => long.Parse(a)).ToArray();
        long l = n[2] + 1;
        if(l < 2)
            l = 2;
        long[] list = new long[l];
        list[0] = n[0];
        list[1] = n[1];
        for(long i = 2; i < l; i++)
        {
            list[i] = list[i - 2] ^ list[i - 1];
        }
        Console.WriteLine($"{list[n[2]]}");
    }
}
0