結果

問題 No.304 鍵(1)
ユーザー HIROPON87069639HIROPON87069639
提出日時 2016-02-22 22:06:22
言語 Python2
(2.7.18)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 25,232 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-16 22:56:52
合計ジャッジ時間 1,177 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
25,232 KB
testcase_01 AC 41 ms
24,976 KB
testcase_02 AC 78 ms
24,592 KB
testcase_03 AC 39 ms
25,232 KB
testcase_04 AC 57 ms
25,220 KB
testcase_05 AC 39 ms
25,208 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