結果

問題 No.892 タピオカ
ユーザー ABKZABKZ
提出日時 2021-07-27 17:07:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 136 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 86,972 KB
実行使用メモリ 71,360 KB
最終ジャッジ日時 2023-09-30 20:25:33
合計ジャッジ時間 1,692 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,288 KB
testcase_01 AC 72 ms
71,016 KB
testcase_02 AC 71 ms
71,008 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 70 ms
71,188 KB
testcase_06 AC 70 ms
71,272 KB
testcase_07 AC 69 ms
71,264 KB
testcase_08 AC 69 ms
71,124 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