結果
問題 | No.441 和か積 |
ユーザー | yumechi |
提出日時 | 2016-11-11 23:34:00 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 39 ms / 1,000 ms |
コード長 | 121 bytes |
コンパイル時間 | 234 ms |
コンパイル使用メモリ | 82,840 KB |
実行使用メモリ | 53,916 KB |
最終ジャッジ日時 | 2024-06-27 03:32:29 |
合計ジャッジ時間 | 2,431 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
ソースコード
a, b = map(int, input().split()) s, p = a+b, a*b if s > p: print("S") elif p > s: print("P") else: print("E")