結果
| 問題 | No.304 鍵(1) |
| コンテスト | |
| ユーザー |
liny_tail
|
| 提出日時 | 2020-08-19 21:26:27 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 125 ms / 2,000 ms |
| コード長 | 109 bytes |
| 記録 | |
| コンパイル時間 | 330 ms |
| コンパイル使用メモリ | 20,952 KB |
| 実行使用メモリ | 34,568 KB |
| 平均クエリ数 | 309.17 |
| 最終ジャッジ日時 | 2026-03-31 16:43:50 |
| 合計ジャッジ時間 | 1,719 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 6 |
ソースコード
cnt = 0
while True:
print('{:03d}'.format(cnt))
if input().strip() == 'unlocked':
exit()
cnt += 1
liny_tail