結果
| 問題 | No.441 和か積 |
| コンテスト | |
| ユーザー |
uuu
|
| 提出日時 | 2017-03-18 20:09:21 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 206 bytes |
| 記録 | |
| コンパイル時間 | 452 ms |
| コンパイル使用メモリ | 73,200 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-03-26 02:32:34 |
| 合計ジャッジ時間 | 1,605 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 24 WA * 6 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main(){
long long a, b;
cin >> a >> b;
string ans = a + b == a * b ? "E" : a + b > a * b ? "S" : "P";
cout << ans << endl;
}
uuu