結果
| 問題 | No.892 タピオカ |
| コンテスト | |
| ユーザー |
Eseshinpu
|
| 提出日時 | 2019-09-28 10:26:11 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 172 bytes |
| 記録 | |
| コンパイル時間 | 54 ms |
| コンパイル使用メモリ | 14,976 KB |
| 実行使用メモリ | 23,116 KB |
| 最終ジャッジ日時 | 2026-09-07 14:45:57 |
| 合計ジャッジ時間 | 5,197 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | RE * 1 TLE * 1 -- * 4 |
ソースコード
ln = input().split()
it = iter(ln)
s = 0
for a in it:
a = int(a)
b = int(next(it))
s += a ** b
print(s)
if s % 2 == 0:
print(":-)")
else:
print(":-(")
Eseshinpu