結果

問題 No.892 タピオカ
ユーザー hase_0o0hase_0o0
提出日時 2019-10-26 00:29:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 103 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 53,648 KB
最終ジャッジ日時 2024-09-13 11:27:53
合計ジャッジ時間 1,237 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,244 KB
testcase_01 AC 38 ms
53,432 KB
testcase_02 AC 38 ms
52,252 KB
testcase_03 AC 37 ms
52,864 KB
testcase_04 AC 38 ms
51,500 KB
testcase_05 AC 38 ms
53,648 KB
testcase_06 AC 37 ms
52,424 KB
testcase_07 AC 38 ms
52,696 KB
testcase_08 AC 38 ms
52,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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