結果

問題 No.1073 無限すごろく
ユーザー trineutrontrineutron
提出日時 2020-06-05 22:32:28
言語 Fortran
(gFortran 13.2.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 33,024 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-09 22:07:24
合計ジャッジ時間 1,393 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.f90:3:4:

    2 | do i=1,6
      |        2
    3 | t(i,i+1)=1
      |    1
Warning: Array reference at (1) out of bounds (7 > 6) in loop beginning at (2)
Main.f90:3:10:

    3 | t(i,i+1)=1
      |          ^
Warning: iteration 5 invokes undefined behavior [-Waggressive-loop-optimizations]
Main.f90:2:5:

    2 | do i=1,6
      |     ^
note: within this loop

ソースコード

diff #

integer(16)::n,t(6,6)=0,a(6,6)=0,m=1d9+7
do i=1,6
t(i,i+1)=1
t(i,1)=(m+1)/6
a(i,i)=1
enddo
read*,n
do while(n>0)
if(mod(n,2)==1)a=mod(matmul(a,t),m)
t=mod(matmul(t,t),m)
n=n/2
enddo
print*,a(1,1)
end
0