結果

問題 No.304 鍵(1)
ユーザー roiti46roiti46
提出日時 2015-11-27 22:39:24
言語 Python2
(2.7.18)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 58 ms
コンパイル使用メモリ 6,512 KB
実行使用メモリ 24,360 KB
平均クエリ数 309.17
最終ジャッジ日時 2023-09-23 20:55:56
合計ジャッジ時間 1,222 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
23,492 KB
testcase_01 AC 54 ms
23,724 KB
testcase_02 AC 89 ms
24,360 KB
testcase_03 AC 53 ms
23,536 KB
testcase_04 AC 70 ms
23,680 KB
testcase_05 AC 52 ms
24,048 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