結果

問題 No.892 タピオカ
ユーザー pea vavapea vava
提出日時 2020-09-07 19:22:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 168 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,772 KB
最終ジャッジ日時 2024-11-29 11:15:17
合計ジャッジ時間 10,849 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

A1, B1, A2, B2, A3, B3 = map(int, input().split())

sum = A1 ** B1 + A2 ** B2 + A3 ** B3

if sum % 2 == 0:
    print(':-)')
elif sum % 2 != 0:
    print(':-(')
0