結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
69,152 KB
testcase_01 AC 56 ms
69,180 KB
testcase_02 AC 54 ms
69,524 KB
testcase_03 AC 55 ms
69,024 KB
testcase_04 AC 61 ms
68,784 KB
testcase_05 AC 56 ms
70,292 KB
testcase_06 AC 57 ms
69,612 KB
testcase_07 AC 55 ms
69,760 KB
testcase_08 AC 61 ms
68,960 KB
testcase_09 AC 56 ms
69,820 KB
testcase_10 AC 57 ms
68,872 KB
testcase_11 AC 56 ms
69,372 KB
testcase_12 AC 57 ms
69,068 KB
testcase_13 AC 56 ms
68,728 KB
testcase_14 AC 57 ms
68,888 KB
testcase_15 AC 58 ms
68,992 KB
testcase_16 AC 57 ms
70,240 KB
testcase_17 AC 56 ms
69,856 KB
testcase_18 AC 56 ms
69,208 KB
testcase_19 AC 56 ms
69,468 KB
testcase_20 AC 61 ms
68,924 KB
testcase_21 AC 62 ms
69,700 KB
testcase_22 AC 61 ms
69,068 KB
testcase_23 AC 62 ms
70,344 KB
testcase_24 AC 62 ms
69,420 KB
testcase_25 AC 56 ms
69,300 KB
testcase_26 AC 56 ms
70,540 KB
testcase_27 AC 55 ms
69,484 KB
testcase_28 AC 58 ms
68,888 KB
testcase_29 AC 59 ms
69,176 KB
testcase_30 AC 59 ms
68,824 KB
testcase_31 AC 57 ms
70,464 KB
testcase_32 AC 57 ms
68,948 KB
testcase_33 AC 62 ms
68,872 KB
testcase_34 AC 57 ms
69,000 KB
testcase_35 AC 57 ms
69,472 KB
testcase_36 AC 57 ms
69,552 KB
testcase_37 AC 59 ms
69,496 KB
testcase_38 AC 56 ms
68,732 KB
testcase_39 AC 58 ms
68,952 KB
testcase_40 AC 57 ms
69,924 KB
testcase_41 AC 57 ms
69,388 KB
testcase_42 AC 56 ms
68,872 KB
testcase_43 AC 58 ms
70,032 KB
testcase_44 AC 57 ms
69,472 KB
testcase_45 AC 57 ms
69,396 KB
testcase_46 AC 61 ms
69,364 KB
testcase_47 AC 57 ms
70,140 KB
testcase_48 AC 56 ms
69,548 KB
testcase_49 AC 58 ms
68,884 KB
testcase_50 AC 57 ms
69,288 KB
testcase_51 AC 57 ms
69,068 KB
testcase_52 AC 56 ms
70,488 KB
testcase_53 AC 57 ms
68,572 KB
testcase_54 AC 56 ms
68,824 KB
testcase_55 AC 56 ms
69,436 KB
testcase_56 AC 57 ms
69,708 KB
testcase_57 AC 56 ms
69,352 KB
testcase_58 AC 61 ms
70,108 KB
testcase_59 AC 58 ms
70,156 KB
testcase_60 AC 55 ms
68,612 KB
testcase_61 AC 55 ms
69,668 KB
testcase_62 AC 57 ms
68,568 KB
testcase_63 AC 58 ms
69,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X, Y = map(int, input().split())

if [X, Y] == [0, 0]:
    print(4)
    print(*[0, 0, 0, 0])
elif [X, Y] == [0, 1]:
    print(4)
    print(*[0, 1, 1, 1])
elif [X, Y] == [1, 0]:
    print(4)
    print(*[1, 0, 0, 0])
else:
    print(4)
    print(*[1, 1, 1, 1])
t = int(input())
print(t)
0