結果

問題 No.892 タピオカ
ユーザー ABKZABKZ
提出日時 2021-07-27 17:07:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 136 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 53,808 KB
最終ジャッジ日時 2024-07-23 14:14:39
合計ジャッジ時間 1,206 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,800 KB
testcase_01 AC 38 ms
52,336 KB
testcase_02 AC 38 ms
53,140 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 38 ms
52,260 KB
testcase_06 AC 37 ms
51,996 KB
testcase_07 AC 38 ms
52,864 KB
testcase_08 AC 37 ms
53,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a1, b1, a2, b2, a3, b3 = map(int, input().split())

if all([x % 2 == 0 for x in [a1, a2, a3]]):
    print(":-)")
else:
    print(":-(")
0