結果

問題 No.304 鍵(1)
ユーザー kou_kkkkou_kkk
提出日時 2024-12-05 12:41:41
言語 Nim
(2.0.2)
結果
TLE  
実行時間 -
コード長 185 bytes
コンパイル時間 5,101 ms
コンパイル使用メモリ 66,944 KB
実行使用メモリ 38,832 KB
最終ジャッジ日時 2024-12-05 12:42:08
合計ジャッジ時間 26,642 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 19) Warning: imported and not used: 'strscans' [UnusedImport]

ソースコード

diff #

import strformat, strscans, strutils

var
  n = 0

while n <= 999:
    echo &"{n:03}"
    
    let
      xs = stdin.readAll.splitLines
    if xs[^1] == "unlocked": quit()
    
    inc n
0