結果
| 問題 | No.304 鍵(1) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-12-18 12:09:44 |
| 言語 | Nim (2.2.8) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 203 bytes |
| 記録 | |
| コンパイル時間 | 2,707 ms |
| コンパイル使用メモリ | 82,688 KB |
| 実行使用メモリ | 57,188 KB |
| 最終ジャッジ日時 | 2026-03-31 05:58:24 |
| 合計ジャッジ時間 | 9,074 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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