結果

問題 No.304 鍵(1)
ユーザー roiti46roiti46
提出日時 2015-11-27 22:39:24
言語 Python2
(2.7.18)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 25,232 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-16 20:46:38
合計ジャッジ時間 1,470 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
24,848 KB
testcase_01 AC 53 ms
24,848 KB
testcase_02 AC 85 ms
25,232 KB
testcase_03 AC 48 ms
25,232 KB
testcase_04 AC 64 ms
25,232 KB
testcase_05 AC 48 ms
25,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import sys,copy,math,heapq,itertools as it,fractions,re,bisect,collections as coll

num = 0
while 1:
    print "%03d" % num
    sys.stdout.flush()
    res = raw_input()
    if res == "unlocked":
        break
    num += 1
0