結果
| 問題 |
No.892 タピオカ
|
| コンテスト | |
| ユーザー |
improve__aucuba
|
| 提出日時 | 2019-10-27 21:46:07 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 175 bytes |
| コンパイル時間 | 168 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2024-09-14 21:07:11 |
| 合計ジャッジ時間 | 987 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge6 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 6 |
ソースコード
a=[]
b=[]
for i in range(0,3):
a.append(input())
b.append(input())
sum=0
for i in range(0,3):
sum+=a[i]**b[i]
if sum%2==0:
print(":-)")
else:
print(":-(")
improve__aucuba