結果

問題 No.2819 Binary Binary-Operator
ユーザー tassei903tassei903
提出日時 2024-07-26 21:56:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 456 bytes
コンパイル時間 1,096 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 71,172 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-26 21:57:06
合計ジャッジ時間 9,269 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
69,200 KB
testcase_01 WA -
testcase_02 AC 62 ms
69,952 KB
testcase_03 WA -
testcase_04 AC 64 ms
69,068 KB
testcase_05 AC 68 ms
68,864 KB
testcase_06 AC 62 ms
69,888 KB
testcase_07 AC 63 ms
70,044 KB
testcase_08 AC 62 ms
69,320 KB
testcase_09 WA -
testcase_10 AC 63 ms
69,144 KB
testcase_11 WA -
testcase_12 AC 62 ms
69,828 KB
testcase_13 AC 62 ms
69,644 KB
testcase_14 AC 61 ms
70,312 KB
testcase_15 AC 62 ms
69,064 KB
testcase_16 AC 61 ms
69,912 KB
testcase_17 AC 61 ms
69,720 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 62 ms
69,848 KB
testcase_25 AC 62 ms
69,056 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 62 ms
70,092 KB
testcase_29 AC 61 ms
69,820 KB
testcase_30 AC 63 ms
69,276 KB
testcase_31 AC 61 ms
69,392 KB
testcase_32 AC 70 ms
69,260 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 63 ms
69,812 KB
testcase_37 WA -
testcase_38 AC 61 ms
68,808 KB
testcase_39 AC 62 ms
69,060 KB
testcase_40 AC 62 ms
69,336 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 62 ms
70,332 KB
testcase_45 WA -
testcase_46 AC 64 ms
69,836 KB
testcase_47 AC 63 ms
70,560 KB
testcase_48 AC 63 ms
69,436 KB
testcase_49 AC 63 ms
69,356 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 65 ms
68,808 KB
testcase_53 AC 63 ms
68,980 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 62 ms
69,728 KB
testcase_57 AC 64 ms
70,332 KB
testcase_58 AC 63 ms
69,908 KB
testcase_59 AC 63 ms
70,752 KB
testcase_60 AC 63 ms
69,028 KB
testcase_61 AC 64 ms
69,064 KB
testcase_62 AC 62 ms
68,992 KB
testcase_63 AC 62 ms
69,796 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(n)
0