結果
| 問題 |
No.441 和か積
|
| コンテスト | |
| ユーザー |
reo_oc
|
| 提出日時 | 2017-03-03 16:35:20 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 157 bytes |
| コンパイル時間 | 255 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-06-22 05:06:11 |
| 合計ジャッジ時間 | 2,422 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 30 |
ソースコード
a = input()
b = input()
plus = int(a) + int(b)
time = int(a) * int(b)
if plus > time:
print('S')
elif time > plus:
print('P')
else:
print('E')
reo_oc