結果
問題 | No.658 テトラナッチ数列 Hard |
ユーザー | %20 |
提出日時 | 2018-03-02 22:55:07 |
言語 | Perl (5.38.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 352 bytes |
コンパイル時間 | 482 ms |
コンパイル使用メモリ | 7,076 KB |
実行使用メモリ | 13,760 KB |
最終ジャッジ日時 | 2024-06-22 05:03:27 |
合計ジャッジ時間 | 4,048 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
13,760 KB |
testcase_01 | AC | 9 ms
6,944 KB |
testcase_02 | AC | 12 ms
6,944 KB |
testcase_03 | AC | 120 ms
6,940 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
コンパイルメッセージ
Main.pl syntax OK
ソースコード
sub f{my@r; for$y(0..3){ for$x(0..3){ for(0..3){ ($r[4*$y+$x]+=$Z[4*$y+$_]*$_[4*$_+$x])%=17 } } } @Z=@r } <>; for(<>){ $n=$_-1; @Z=(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); f(@Z),$n>>$_&1&&f(1,1,1,1, 1,0,0,0, 0,1,0,0, 0,0,1,0)for reverse 0..59; print$Z[12],$/ }