結果

問題 No.304 鍵(1)
ユーザー HIROPON87069639HIROPON87069639
提出日時 2016-02-22 22:06:22
言語 Python2
(2.7.18)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 6,464 KB
実行使用メモリ 24,204 KB
平均クエリ数 309.17
最終ジャッジ日時 2023-09-23 23:11:48
合計ジャッジ時間 1,478 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
24,204 KB
testcase_01 AC 38 ms
23,940 KB
testcase_02 AC 65 ms
23,952 KB
testcase_03 AC 31 ms
23,628 KB
testcase_04 AC 47 ms
23,520 KB
testcase_05 AC 30 ms
24,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import sys
for i in range(0, 1000):
    print str(i).rjust(3, "0")
    sys.stdout.flush()
    S = raw_input()
    if S == "unlocked":
        exit()
0