結果
問題 |
No.658 テトラナッチ数列 Hard
|
ユーザー |
![]() |
提出日時 | 2018-09-08 14:02:24 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 556 bytes |
コンパイル時間 | 2,374 ms |
コンパイル使用メモリ | 108,184 KB |
実行使用メモリ | 25,964 KB |
最終ジャッジ日時 | 2024-12-16 02:31:10 |
合計ジャッジ時間 | 4,049 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 1 WA * 7 |
コンパイルメッセージ
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()); var w = (int)(n % 4912L); Console.WriteLine(a[w]); } } 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; } }