結果

問題 No.892 タピオカ
ユーザー neterukunneterukun
提出日時 2019-09-27 21:28:28
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 119 bytes
コンパイル時間 1,332 ms
コンパイル使用メモリ 81,152 KB
実行使用メモリ 53,008 KB
最終ジャッジ日時 2023-10-25 01:46:53
合計ジャッジ時間 1,462 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

a1, b1, a2, b2, a3, b3 = map(int, input().split())

if (a1 + a2 + a3) % 2 == 0:
    print(":-)")
else:
    print(":-(")
0