結果

問題 No.304 鍵(1)
ユーザー kou_kkkkou_kkk
提出日時 2024-12-05 15:15:43
言語 Nim
(2.0.2)
結果
WA  
実行時間 -
コード長 167 bytes
コンパイル時間 4,233 ms
コンパイル使用メモリ 65,152 KB
実行使用メモリ 39,040 KB
平均クエリ数 834.17
最終ジャッジ日時 2024-12-05 15:15:52
合計ジャッジ時間 8,974 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 TLE -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import strformat, strutils

var
  n = 0

while n <= 999:
    echo &"{n:03}"
    inc n

let
  xs = stdin.readAll.splitLines
  idx = xs.find "unlocked"

echo &"{idx:03}"
0