結果

問題 No.892 タピオカ
ユーザー Maeda, KazuyaMaeda, Kazuya
提出日時 2019-09-27 21:32:17
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 31 ms / 1,000 ms
コード長 164 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 11,816 KB
実行使用メモリ 10,084 KB
最終ジャッジ日時 2023-10-25 01:53:11
合計ジャッジ時間 1,020 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,084 KB
testcase_01 AC 31 ms
10,084 KB
testcase_02 AC 30 ms
10,084 KB
testcase_03 AC 28 ms
10,084 KB
testcase_04 AC 28 ms
10,084 KB
testcase_05 AC 28 ms
10,084 KB
testcase_06 AC 28 ms
10,084 KB
testcase_07 AC 29 ms
10,084 KB
testcase_08 AC 29 ms
10,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a1, b1, a2, b2, a3, b3 = map(int, input().split())
#total = a1**b1 + a2**b2 + a3**b3
total = a1 + a2 + a3
if total % 2 == 0:
    print(':-)')
else:
    print(':-(')
0