結果

問題 No.892 タピオカ
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-06 21:43:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 33 ms / 1,000 ms
コード長 204 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 53,444 KB
最終ジャッジ日時 2024-06-02 03:28:22
合計ジャッジ時間 1,083 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,684 KB
testcase_01 AC 32 ms
52,640 KB
testcase_02 AC 33 ms
52,600 KB
testcase_03 AC 32 ms
52,948 KB
testcase_04 AC 32 ms
52,688 KB
testcase_05 AC 32 ms
52,824 KB
testcase_06 AC 33 ms
53,444 KB
testcase_07 AC 33 ms
52,868 KB
testcase_08 AC 33 ms
52,864 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