結果

問題 No.355 数当てゲーム(2)
ユーザー matsu7874matsu7874
提出日時 2016-04-01 22:42:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 418 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 28,376 KB
平均クエリ数 85.81
最終ジャッジ日時 2024-07-16 08:55:22
合計ジャッジ時間 11,561 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 56 ms
27,864 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 66 ms
27,608 KB
testcase_17 AC 66 ms
27,864 KB
testcase_18 AC 57 ms
27,608 KB
testcase_19 RE -
testcase_20 AC 58 ms
28,128 KB
testcase_21 AC 58 ms
28,224 KB
testcase_22 RE -
testcase_23 AC 59 ms
27,472 KB
testcase_24 AC 57 ms
27,856 KB
testcase_25 RE -
testcase_26 AC 62 ms
28,112 KB
testcase_27 AC 68 ms
27,984 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 56 ms
27,216 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 59 ms
27,976 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 AC 65 ms
28,232 KB
testcase_41 RE -
testcase_42 RE -
testcase_43 AC 64 ms
27,592 KB
testcase_44 RE -
testcase_45 AC 56 ms
27,728 KB
testcase_46 RE -
testcase_47 RE -
testcase_48 AC 59 ms
27,600 KB
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import random
import itertools

ans = []
while True:
    a,b,c,d = random.sample([0,1,2,3,4,5,6,7,8,9],4)
    print(a,b,c,d)
    sys.stdout.flush()
    x,y =map(int, input().split())
    if x == 4:
        exit()
    if x + y == 4:
        ans = [a,b,c,d]
        break
for a in itertools.permutations(ans):
    print(*a)
    sys.stdout.flush()
    x,y=map(int, input().split())
    if x==4:
        exit()
0