結果

問題 No.892 タピオカ
ユーザー hase_0o0hase_0o0
提出日時 2019-10-26 00:29:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 1,000 ms
コード長 103 bytes
コンパイル時間 1,046 ms
コンパイル使用メモリ 87,064 KB
実行使用メモリ 71,652 KB
最終ジャッジ日時 2023-10-11 12:41:08
合計ジャッジ時間 2,413 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,460 KB
testcase_01 AC 71 ms
71,400 KB
testcase_02 AC 72 ms
71,460 KB
testcase_03 AC 70 ms
71,652 KB
testcase_04 AC 72 ms
71,376 KB
testcase_05 AC 70 ms
71,212 KB
testcase_06 AC 71 ms
71,372 KB
testcase_07 AC 71 ms
71,320 KB
testcase_08 AC 70 ms
71,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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