結果
問題 |
No.304 鍵(1)
|
ユーザー |
|
提出日時 | 2018-12-18 12:09:44 |
言語 | Nim (2.2.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 203 bytes |
コンパイル時間 | 4,405 ms |
コンパイル使用メモリ | 81,284 KB |
実行使用メモリ | 40,660 KB |
最終ジャッジ日時 | 2024-07-16 16:32:13 |
合計ジャッジ時間 | 10,936 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | TLE * 1 -- * 5 |
ソースコード
import strformat,strutils,random var used = newSeq[bool](1000) while true: var i = 0 while not used[i]: i = rand(999) used[i] = true echo fmt"{i:03d}" if stdin.readLine() == "unlocked": break