結果

問題 No.2819 Binary Binary-Operator
ユーザー chineristACchineristAC
提出日時 2024-07-27 00:00:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 1,035 bytes
コンパイル時間 897 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 73,312 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-27 00:00:48
合計ジャッジ時間 8,774 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
72,416 KB
testcase_01 AC 70 ms
73,056 KB
testcase_02 AC 68 ms
72,416 KB
testcase_03 AC 70 ms
72,800 KB
testcase_04 AC 71 ms
72,672 KB
testcase_05 AC 75 ms
72,544 KB
testcase_06 AC 70 ms
72,408 KB
testcase_07 AC 70 ms
72,672 KB
testcase_08 AC 70 ms
72,408 KB
testcase_09 AC 70 ms
72,672 KB
testcase_10 AC 69 ms
72,280 KB
testcase_11 AC 70 ms
72,672 KB
testcase_12 AC 70 ms
72,416 KB
testcase_13 AC 70 ms
72,544 KB
testcase_14 AC 71 ms
72,160 KB
testcase_15 AC 70 ms
72,672 KB
testcase_16 AC 69 ms
72,552 KB
testcase_17 AC 73 ms
72,536 KB
testcase_18 AC 70 ms
72,672 KB
testcase_19 AC 71 ms
72,672 KB
testcase_20 AC 70 ms
72,416 KB
testcase_21 AC 73 ms
72,544 KB
testcase_22 AC 71 ms
72,800 KB
testcase_23 AC 71 ms
72,416 KB
testcase_24 AC 71 ms
72,280 KB
testcase_25 AC 69 ms
72,800 KB
testcase_26 AC 71 ms
72,584 KB
testcase_27 AC 69 ms
72,236 KB
testcase_28 AC 73 ms
72,416 KB
testcase_29 AC 70 ms
72,544 KB
testcase_30 AC 71 ms
72,912 KB
testcase_31 AC 72 ms
72,696 KB
testcase_32 AC 71 ms
73,312 KB
testcase_33 AC 71 ms
72,672 KB
testcase_34 AC 69 ms
72,800 KB
testcase_35 AC 72 ms
72,288 KB
testcase_36 AC 71 ms
72,544 KB
testcase_37 AC 70 ms
72,416 KB
testcase_38 AC 71 ms
72,800 KB
testcase_39 AC 74 ms
73,056 KB
testcase_40 AC 72 ms
72,544 KB
testcase_41 AC 71 ms
72,416 KB
testcase_42 AC 69 ms
72,800 KB
testcase_43 AC 69 ms
72,032 KB
testcase_44 AC 70 ms
73,056 KB
testcase_45 AC 70 ms
72,800 KB
testcase_46 AC 68 ms
72,800 KB
testcase_47 AC 71 ms
72,672 KB
testcase_48 AC 69 ms
72,416 KB
testcase_49 AC 68 ms
72,800 KB
testcase_50 AC 73 ms
72,160 KB
testcase_51 AC 72 ms
72,544 KB
testcase_52 AC 69 ms
72,672 KB
testcase_53 AC 69 ms
72,672 KB
testcase_54 AC 69 ms
72,800 KB
testcase_55 AC 70 ms
72,544 KB
testcase_56 AC 70 ms
72,160 KB
testcase_57 AC 68 ms
72,416 KB
testcase_58 AC 69 ms
72,800 KB
testcase_59 AC 70 ms
72,536 KB
testcase_60 AC 69 ms
72,800 KB
testcase_61 AC 69 ms
72,416 KB
testcase_62 AC 69 ms
72,416 KB
testcase_63 AC 73 ms
72,544 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(2):
            for y in range(2):
                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,Y,Y,Y],flush=True)
t = int(input())
print(t)



0