結果

問題 No.892 タピオカ
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-06 21:43:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 1,000 ms
コード長 204 bytes
コンパイル時間 1,042 ms
コンパイル使用メモリ 87,112 KB
実行使用メモリ 71,504 KB
最終ジャッジ日時 2023-08-24 13:01:25
合計ジャッジ時間 2,183 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,404 KB
testcase_01 AC 69 ms
71,444 KB
testcase_02 AC 71 ms
71,392 KB
testcase_03 AC 70 ms
71,504 KB
testcase_04 AC 70 ms
71,280 KB
testcase_05 AC 71 ms
71,276 KB
testcase_06 AC 70 ms
71,364 KB
testcase_07 AC 71 ms
71,348 KB
testcase_08 AC 69 ms
71,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

AB = list(map(int,input().split()))
cou = 0
if AB[0] % 2 != 0:
    cou += 1
if AB[2] % 2 != 0:
    cou += 1
if AB[4] % 2 != 0:
    cou += 1
if cou == 1 or cou == 3:
    print(":-(")
else:
    print(":-)")
0