結果

問題 No.355 数当てゲーム(2)
ユーザー mkawa2mkawa2
提出日時 2019-12-26 17:35:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,505 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 61,288 KB
平均クエリ数 20.90
最終ジャッジ日時 2024-07-16 19:10:15
合計ジャッジ時間 36,454 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 612 ms
61,288 KB
testcase_01 AC 562 ms
60,524 KB
testcase_02 AC 564 ms
60,776 KB
testcase_03 AC 564 ms
60,900 KB
testcase_04 AC 559 ms
60,528 KB
testcase_05 AC 554 ms
60,520 KB
testcase_06 AC 553 ms
60,780 KB
testcase_07 AC 562 ms
61,032 KB
testcase_08 AC 576 ms
60,524 KB
testcase_09 AC 555 ms
60,936 KB
testcase_10 AC 554 ms
60,656 KB
testcase_11 AC 551 ms
60,640 KB
testcase_12 AC 553 ms
60,904 KB
testcase_13 AC 574 ms
60,648 KB
testcase_14 AC 567 ms
61,164 KB
testcase_15 AC 563 ms
61,040 KB
testcase_16 AC 563 ms
60,780 KB
testcase_17 AC 553 ms
60,524 KB
testcase_18 AC 549 ms
61,036 KB
testcase_19 AC 561 ms
60,780 KB
testcase_20 AC 563 ms
61,028 KB
testcase_21 AC 553 ms
60,644 KB
testcase_22 AC 579 ms
60,544 KB
testcase_23 AC 556 ms
60,268 KB
testcase_24 AC 555 ms
61,028 KB
testcase_25 AC 565 ms
60,648 KB
testcase_26 AC 564 ms
61,028 KB
testcase_27 AC 563 ms
60,776 KB
testcase_28 AC 565 ms
60,900 KB
testcase_29 AC 553 ms
60,384 KB
testcase_30 AC 567 ms
60,392 KB
testcase_31 AC 563 ms
60,776 KB
testcase_32 AC 579 ms
60,648 KB
testcase_33 AC 580 ms
60,700 KB
testcase_34 AC 567 ms
60,652 KB
testcase_35 RE -
testcase_36 AC 570 ms
60,764 KB
testcase_37 AC 569 ms
60,764 KB
testcase_38 AC 565 ms
61,048 KB
testcase_39 AC 551 ms
60,636 KB
testcase_40 AC 553 ms
61,148 KB
testcase_41 AC 559 ms
60,508 KB
testcase_42 AC 569 ms
61,024 KB
testcase_43 AC 563 ms
60,504 KB
testcase_44 AC 577 ms
61,020 KB
testcase_45 AC 581 ms
60,388 KB
testcase_46 AC 583 ms
60,772 KB
testcase_47 AC 570 ms
60,648 KB
testcase_48 AC 582 ms
60,768 KB
testcase_49 AC 585 ms
60,516 KB
testcase_50 AC 580 ms
60,384 KB
testcase_51 RE -
権限があれば一括ダウンロードができます

ソースコード

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())
    print(4,5,6,7)
    x1,_=map(int,input().split())
    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<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>x1:
                ans.append(a)
                break
    print(*ans)
    input()

main()
0