結果

問題 No.892 タピオカ
ユーザー HagianHagian
提出日時 2021-07-22 20:00:00
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 170 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 23,156 KB
最終ジャッジ日時 2024-07-17 15:06:51
合計ジャッジ時間 3,019 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 1 TLE * 1 -- * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

l = [int(i) for i in input().split()]
count = 0
for i in range(0,len(l),2):
    tapi = l[i] ** l[i+1]
    count += tapi
if count % 2 == 0: print(":-)")
else: print(":-(")
0