結果

問題 No.2819 Binary Binary-Operator
ユーザー nikoro256nikoro256
提出日時 2024-07-26 22:07:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 826 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 70,680 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-26 22:07:22
合計ジャッジ時間 7,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
69,356 KB
testcase_01 AC 61 ms
69,128 KB
testcase_02 AC 58 ms
69,368 KB
testcase_03 AC 57 ms
68,736 KB
testcase_04 AC 56 ms
69,684 KB
testcase_05 AC 58 ms
70,308 KB
testcase_06 AC 56 ms
69,716 KB
testcase_07 AC 59 ms
68,436 KB
testcase_08 AC 58 ms
70,388 KB
testcase_09 AC 58 ms
69,340 KB
testcase_10 AC 57 ms
69,072 KB
testcase_11 AC 57 ms
69,188 KB
testcase_12 AC 56 ms
69,484 KB
testcase_13 AC 56 ms
69,476 KB
testcase_14 AC 55 ms
69,604 KB
testcase_15 AC 60 ms
68,708 KB
testcase_16 AC 60 ms
68,924 KB
testcase_17 AC 55 ms
70,100 KB
testcase_18 AC 59 ms
69,420 KB
testcase_19 AC 56 ms
69,600 KB
testcase_20 AC 58 ms
68,472 KB
testcase_21 AC 57 ms
69,476 KB
testcase_22 AC 56 ms
69,456 KB
testcase_23 AC 57 ms
69,376 KB
testcase_24 AC 57 ms
68,724 KB
testcase_25 AC 55 ms
69,540 KB
testcase_26 AC 56 ms
70,272 KB
testcase_27 AC 56 ms
68,548 KB
testcase_28 AC 58 ms
69,516 KB
testcase_29 AC 57 ms
68,972 KB
testcase_30 AC 58 ms
68,996 KB
testcase_31 AC 57 ms
69,092 KB
testcase_32 AC 58 ms
69,784 KB
testcase_33 AC 58 ms
69,276 KB
testcase_34 AC 58 ms
69,272 KB
testcase_35 AC 56 ms
69,092 KB
testcase_36 AC 56 ms
69,764 KB
testcase_37 AC 57 ms
68,476 KB
testcase_38 AC 56 ms
68,628 KB
testcase_39 AC 57 ms
68,812 KB
testcase_40 AC 58 ms
69,180 KB
testcase_41 AC 58 ms
68,568 KB
testcase_42 AC 58 ms
68,624 KB
testcase_43 AC 59 ms
70,680 KB
testcase_44 AC 56 ms
68,980 KB
testcase_45 AC 57 ms
69,396 KB
testcase_46 AC 60 ms
69,036 KB
testcase_47 AC 59 ms
67,980 KB
testcase_48 AC 58 ms
69,220 KB
testcase_49 AC 57 ms
69,744 KB
testcase_50 AC 57 ms
70,416 KB
testcase_51 AC 56 ms
69,844 KB
testcase_52 AC 57 ms
69,144 KB
testcase_53 AC 59 ms
70,288 KB
testcase_54 AC 60 ms
69,328 KB
testcase_55 AC 59 ms
68,724 KB
testcase_56 AC 57 ms
69,628 KB
testcase_57 AC 58 ms
69,532 KB
testcase_58 AC 57 ms
69,572 KB
testcase_59 AC 56 ms
69,236 KB
testcase_60 AC 56 ms
70,456 KB
testcase_61 AC 57 ms
70,192 KB
testcase_62 AC 55 ms
69,216 KB
testcase_63 AC 57 ms
68,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X, Y = map(int, input().split())
"""
0 0 0
ans 1 -> 0*0=1
ans 0 -> 0*0=1 1*0=0
         0*0=0 0*0=0

0 0 0 0
ans 1 -> 0*0=1
ans 0 -> 0*0=0 0*0=0 0*0=0
         0*0=1 1*0=0 0*0=1

1 0 0 0
ans 1 -> 1*0=1
ans 0 -> 1*0=0 0*0=1 1*0=0
         1*0=1 1*0=1 1*0=1
"""
if X == Y:
    print(4)
    print(Y, Y, Y, Y)
    A = int(input())
    if A != Y:
        print(1 - Y)
    else:
        print(Y)
else:
    print(4)
    print(X, Y, Y, Y)
    A = int(input())
    if X == A:
        print(X)
    else:
        print(1 - X)
0