結果
| 問題 | No.481 1から10 |
| コンテスト | |
| ユーザー |
con
|
| 提出日時 | 2018-11-07 15:49:11 |
| 言語 | Fortran (gFortran 15.2.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 184 bytes |
| 記録 | |
| コンパイル時間 | 252 ms |
| コンパイル使用メモリ | 36,604 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-15 00:53:10 |
| 合計ジャッジ時間 | 1,112 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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
con