結果

問題 No.2819 Binary Binary-Operator
ユーザー chineristACchineristAC
提出日時 2024-07-26 23:59:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,034 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 74,932 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-26 23:59:54
合計ジャッジ時間 8,208 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
73,172 KB
testcase_01 AC 65 ms
73,568 KB
testcase_02 AC 68 ms
74,224 KB
testcase_03 AC 63 ms
73,128 KB
testcase_04 AC 61 ms
72,532 KB
testcase_05 AC 66 ms
73,096 KB
testcase_06 AC 64 ms
73,460 KB
testcase_07 AC 65 ms
73,080 KB
testcase_08 AC 66 ms
73,820 KB
testcase_09 AC 68 ms
73,768 KB
testcase_10 AC 65 ms
73,000 KB
testcase_11 AC 64 ms
73,308 KB
testcase_12 AC 65 ms
73,828 KB
testcase_13 AC 72 ms
73,092 KB
testcase_14 AC 66 ms
74,328 KB
testcase_15 AC 65 ms
73,444 KB
testcase_16 AC 66 ms
72,808 KB
testcase_17 AC 65 ms
72,740 KB
testcase_18 AC 66 ms
73,328 KB
testcase_19 AC 67 ms
73,788 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 64 ms
72,428 KB
testcase_29 AC 64 ms
73,616 KB
testcase_30 AC 65 ms
73,464 KB
testcase_31 AC 76 ms
74,724 KB
testcase_32 AC 66 ms
72,760 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 64 ms
73,420 KB
testcase_36 AC 65 ms
72,988 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 65 ms
72,704 KB
testcase_40 AC 67 ms
73,420 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 65 ms
73,272 KB
testcase_44 AC 66 ms
73,544 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 65 ms
73,108 KB
testcase_48 AC 64 ms
73,072 KB
testcase_49 AC 73 ms
73,372 KB
testcase_50 AC 64 ms
72,816 KB
testcase_51 AC 66 ms
74,116 KB
testcase_52 AC 65 ms
73,360 KB
testcase_53 AC 65 ms
73,352 KB
testcase_54 AC 64 ms
73,260 KB
testcase_55 AC 72 ms
72,300 KB
testcase_56 AC 65 ms
72,852 KB
testcase_57 AC 66 ms
73,804 KB
testcase_58 AC 63 ms
72,948 KB
testcase_59 AC 64 ms
72,624 KB
testcase_60 AC 64 ms
73,432 KB
testcase_61 AC 64 ms
73,476 KB
testcase_62 AC 65 ms
72,952 KB
testcase_63 AC 65 ms
73,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
from heapq import *
from collections import deque
import random
import bisect
from math import factorial

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

def search(n):
    assert 3 <= n

    def check(A,calc_res):
        for x in range(1):
            for y in range(1):
                t = [x,y]
                check = calc_res[t[A[0]]][t[A[1]]]
                for i in range(2,n):
                    check = calc_res[check][t[A[i]]]
                
                if not check == calc_res[x][y]:
                    return False
        
        return True
    
    
    for T in range(1<<n):
        A = [T>>i & 1 for i in range(n)]
        for S in range(16):
            calc_res = [[S & 1, (S>>1) & 1],[(S>>2) & 1, (S>>3) & 1]]
            if not check(A,calc_res):
                break
        else:
            return A

X,Y = mi()
print(4,flush=True)
print(*[X,X,X,X],flush=True)
t = int(input())
print(t)



0