結果

問題 No.304 鍵(1)
ユーザー maspymaspy
提出日時 2020-01-21 13:21:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,224 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 10,992 KB
実行使用メモリ 24,264 KB
平均クエリ数 1000.00
最終ジャッジ日時 2023-09-23 19:28:36
合計ジャッジ時間 2,390 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 84 ms
23,604 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

# DEBUG = True
DEBUG = False

class Interactive:
    def __init__(self):
        self.ques_cnt = 0
        self.create_data()
        
    def create_data(self):
        import random
        x = random.randint(0,999)
        pwd = '{:03}'.format(x)
        print('created pwd:', pwd)
        self.pwd = pwd
        
    def resp_ques(self, *args):
        if args == (self.pwd,):
            return 'unlocked'
        else:
            return 'locked'
            
    def resp_ans(self, *args):
        pass
            
if DEBUG:
    interactive = Interactive()
    
def question(*args, offset=None):
    if offset is None:
        print(*args, flush=True)
    else:
        print(offset, *args, flush=True)
    if DEBUG:
        resp = interactive.resp_ques(*args)
        print(resp)
        return resp
    else:
        return readline()
    
def answer(*args, offset=None):
    if offset is None:
        print(*args, flush=True)
    else:
        print(offset, *args, flush=True)
    if DEBUG:
        interactive.resp_ans(*args)
    else:
        exit()

for x in range(1000):
    ques = '{:03}'.format(x)
    resp = question(ques)
    if resp == 'unlocked':
        break
0