結果

問題 No.304 鍵(1)
ユーザー jjjj
提出日時 2016-07-30 14:32:49
言語 Fortran
(gFortran 13.2.0)
結果
WA  
実行時間 -
コード長 163 bytes
コンパイル時間 1,259 ms
コンパイル使用メモリ 30,208 KB
実行使用メモリ 25,220 KB
平均クエリ数 474.67
最終ジャッジ日時 2024-07-16 10:48:28
合計ジャッジ時間 2,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 25 ms
24,836 KB
testcase_02 AC 59 ms
24,580 KB
testcase_03 AC 24 ms
25,220 KB
testcase_04 AC 39 ms
24,824 KB
testcase_05 AC 24 ms
24,812 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