結果

問題 No.304 鍵(1)
ユーザー jjjj
提出日時 2016-07-30 14:32:49
言語 Fortran
(gFortran 13.2.0)
結果
WA  
実行時間 -
コード長 163 bytes
コンパイル時間 1,047 ms
コンパイル使用メモリ 25,244 KB
実行使用メモリ 24,348 KB
平均クエリ数 474.67
最終ジャッジ日時 2023-09-23 11:15:45
合計ジャッジ時間 2,600 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 28 ms
24,264 KB
testcase_02 AC 63 ms
23,376 KB
testcase_03 AC 30 ms
23,376 KB
testcase_04 AC 44 ms
23,376 KB
testcase_05 AC 30 ms
23,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

  character*8::str
  integer::i
  do i=1, 999
     print '(i3.3)',i
     read *,str
     if(LEN_TRIM(str).eq.8) then
        exit
     end if
  end do
end program
0