結果

問題 No.892 タピオカ
ユーザー Yoocie
提出日時 2019-10-07 22:12:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 105 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 53,196 KB
最終ジャッジ日時 2024-10-14 17:31:11
合計ジャッジ時間 958 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

l=input().split()
l=[int(i) for i in l]
if (l[0]+l[2]+l[4])%2==0:
    print(":-)")
else:
    print(":-(")
0