結果

問題 No.355 数当てゲーム(2)
ユーザー mkawa2mkawa2
提出日時 2019-12-26 17:43:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 612 ms / 2,000 ms
コード長 1,605 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 61,344 KB
平均クエリ数 20.87
最終ジャッジ日時 2024-07-17 02:25:10
合計ジャッジ時間 32,685 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 612 ms
60,940 KB
testcase_01 AC 600 ms
60,812 KB
testcase_02 AC 550 ms
60,816 KB
testcase_03 AC 554 ms
61,068 KB
testcase_04 AC 558 ms
60,564 KB
testcase_05 AC 563 ms
61,068 KB
testcase_06 AC 563 ms
61,200 KB
testcase_07 AC 549 ms
60,684 KB
testcase_08 AC 557 ms
60,820 KB
testcase_09 AC 555 ms
60,688 KB
testcase_10 AC 550 ms
60,296 KB
testcase_11 AC 563 ms
60,596 KB
testcase_12 AC 559 ms
61,192 KB
testcase_13 AC 594 ms
61,200 KB
testcase_14 AC 601 ms
60,688 KB
testcase_15 AC 564 ms
61,064 KB
testcase_16 AC 574 ms
61,072 KB
testcase_17 AC 555 ms
60,812 KB
testcase_18 AC 552 ms
61,228 KB
testcase_19 AC 553 ms
61,076 KB
testcase_20 AC 556 ms
61,064 KB
testcase_21 AC 561 ms
60,552 KB
testcase_22 AC 553 ms
60,428 KB
testcase_23 AC 556 ms
60,712 KB
testcase_24 AC 562 ms
60,804 KB
testcase_25 AC 559 ms
61,064 KB
testcase_26 AC 565 ms
61,344 KB
testcase_27 AC 557 ms
60,552 KB
testcase_28 AC 547 ms
60,552 KB
testcase_29 AC 554 ms
60,800 KB
testcase_30 AC 546 ms
61,060 KB
testcase_31 AC 564 ms
60,680 KB
testcase_32 AC 553 ms
60,544 KB
testcase_33 AC 554 ms
60,548 KB
testcase_34 AC 554 ms
60,544 KB
testcase_35 AC 555 ms
60,668 KB
testcase_36 AC 570 ms
61,304 KB
testcase_37 AC 552 ms
60,792 KB
testcase_38 AC 553 ms
60,924 KB
testcase_39 AC 559 ms
60,932 KB
testcase_40 AC 554 ms
61,176 KB
testcase_41 AC 569 ms
61,184 KB
testcase_42 AC 546 ms
60,920 KB
testcase_43 AC 559 ms
60,152 KB
testcase_44 AC 550 ms
61,056 KB
testcase_45 AC 556 ms
60,420 KB
testcase_46 AC 575 ms
60,676 KB
testcase_47 AC 551 ms
60,932 KB
testcase_48 AC 564 ms
61,056 KB
testcase_49 AC 554 ms
60,808 KB
testcase_50 AC 552 ms
60,544 KB
testcase_51 AC 576 ms
61,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *
from math import *
from collections import *
from heapq import *
from random import *
import numpy as np
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main():
    print(0,1,2,3)
    x0,_=map(int,input().split())
    if x0==4:exit()
    print(4,5,6,7)
    x1,_=map(int,input().split())
    if x1==4:exit()
    ans=[]
    for i in range(4):
        base=[0,1,2,3]
        fin=False
        for a in range(4,10):
            base[i]=a
            print(*base)
            x,_=map(int,input().split())
            if x == 4: exit()
            if x<x0:
                ans.append(i)
                fin=True
                break
            if x>x0:
                ans.append(a)
                fin=True
                break
        if fin:continue
        base=[4,5,6,7]
        for a in range(4):
            base[i]=a
            print(*base)
            x,_=map(int,input().split())
            if x == 4: exit()
            if x>x1:
                ans.append(a)
                break
    print(*ans)
    input()

main()
0