結果

問題 No.2819 Binary Binary-Operator
ユーザー tassei903tassei903
提出日時 2024-07-26 21:53:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 460 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 71,104 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-26 21:54:02
合計ジャッジ時間 7,250 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
69,756 KB
testcase_01 WA -
testcase_02 AC 56 ms
70,704 KB
testcase_03 WA -
testcase_04 AC 58 ms
70,276 KB
testcase_05 AC 59 ms
68,852 KB
testcase_06 AC 58 ms
69,744 KB
testcase_07 AC 57 ms
69,400 KB
testcase_08 AC 56 ms
68,920 KB
testcase_09 WA -
testcase_10 AC 60 ms
69,632 KB
testcase_11 WA -
testcase_12 AC 55 ms
68,960 KB
testcase_13 AC 56 ms
69,932 KB
testcase_14 AC 56 ms
69,612 KB
testcase_15 AC 56 ms
68,984 KB
testcase_16 AC 55 ms
69,632 KB
testcase_17 AC 56 ms
69,332 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 58 ms
68,996 KB
testcase_25 AC 58 ms
69,216 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 57 ms
69,016 KB
testcase_29 AC 56 ms
69,076 KB
testcase_30 AC 55 ms
69,444 KB
testcase_31 AC 55 ms
69,540 KB
testcase_32 AC 56 ms
69,620 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 56 ms
68,736 KB
testcase_37 WA -
testcase_38 AC 59 ms
69,696 KB
testcase_39 AC 55 ms
69,140 KB
testcase_40 AC 57 ms
70,204 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 57 ms
69,244 KB
testcase_45 WA -
testcase_46 AC 58 ms
69,740 KB
testcase_47 AC 60 ms
69,032 KB
testcase_48 AC 60 ms
71,036 KB
testcase_49 AC 57 ms
69,220 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 59 ms
68,624 KB
testcase_53 AC 54 ms
69,948 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 54 ms
69,632 KB
testcase_57 AC 61 ms
68,620 KB
testcase_58 AC 62 ms
68,868 KB
testcase_59 AC 59 ms
69,076 KB
testcase_60 AC 59 ms
69,992 KB
testcase_61 AC 55 ms
69,204 KB
testcase_62 AC 55 ms
69,604 KB
testcase_63 AC 56 ms
69,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

x, y = na()

print(3)
print(x, y, x, flush = True)
n = ni()
if n == x:
    print(x)
else:
    print(x ^ 1)
0