結果
問題 |
No.481 1から10
|
ユーザー |
![]() |
提出日時 | 2018-11-07 15:49:11 |
言語 | Fortran (gFortran 14.2.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 184 bytes |
コンパイル時間 | 143 ms |
コンパイル使用メモリ | 30,848 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-20 20:44:21 |
合計ジャッジ時間 | 731 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 8 |
ソースコード
implicit none integer(8) A,i,m integer(8),allocatable :: x(:) allocate (x(9)) read(*,*) (x(m),m=1,9) do i=1,10 if (x(i)/=i) then write(*,*) i exit end if end do end