結果
問題 | No.658 テトラナッチ数列 Hard |
ユーザー | bluemegane |
提出日時 | 2018-09-08 13:54:16 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 525 bytes |
コンパイル時間 | 801 ms |
コンパイル使用メモリ | 107,516 KB |
実行使用メモリ | 27,876 KB |
最終ジャッジ日時 | 2024-05-09 12:56:00 |
合計ジャッジ時間 | 2,337 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
21,808 KB |
testcase_01 | AC | 23 ms
23,648 KB |
testcase_02 | AC | 24 ms
23,664 KB |
testcase_03 | AC | 24 ms
23,424 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
コンパイルメッセージ
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() { var a = new int[4913]; a[4] = 1; tetraset(a); var q = int.Parse(Console.ReadLine().Trim()); for (int i = 0; i < q; i++) { var n = long.Parse(Console.ReadLine().Trim()); Console.WriteLine(a[n % 4912]); } } public static void tetraset(int[] a) { for (int i = 5; i <= 4912; i++) a[i] = (a[i - 1] + a[i - 2] + a[i - 3] + a[i - 4]) % 17; } }