結果

問題 No.304 鍵(1)
ユーザー hum_ophum_op
提出日時 2016-04-11 21:34:15
言語 F#
(F# 4.0)
結果
AC  
実行時間 424 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 14,132 ms
コンパイル使用メモリ 188,376 KB
実行使用メモリ 50,884 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-16 23:37:26
合計ジャッジ時間 16,279 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 372 ms
50,012 KB
testcase_01 AC 373 ms
50,392 KB
testcase_02 AC 424 ms
50,648 KB
testcase_03 AC 369 ms
50,820 KB
testcase_04 AC 398 ms
50,884 KB
testcase_05 AC 369 ms
50,532 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (384 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System

let rec No304 (n:int) =
    if n = 0 then
        printfn "%03d" n
        No304 (n+1)
    elif Console.ReadLine() = "locked" then
        printfn "%03d" n
        No304 (n+1)
    else
        ()

No304 0
0