結果
| 問題 |
No.441 和か積
|
| コンテスト | |
| ユーザー |
reo_oc
|
| 提出日時 | 2017-03-03 17:21:47 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 157 bytes |
| コンパイル時間 | 131 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-06-22 05:09:10 |
| 合計ジャッジ時間 | 1,972 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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 plus < time:
print('C')
else:
print('E')
reo_oc