結果

問題 No.441 和か積
ユーザー ohanaohana
提出日時 2023-10-20 10:48:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 127 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 53,504 KB
最終ジャッジ日時 2024-09-20 06:22:50
合計ジャッジ時間 2,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,296 KB
testcase_02 AC 34 ms
52,308 KB
testcase_03 AC 33 ms
52,556 KB
testcase_04 AC 32 ms
52,072 KB
testcase_05 AC 32 ms
52,368 KB
testcase_06 AC 33 ms
52,800 KB
testcase_07 AC 35 ms
52,236 KB
testcase_08 AC 34 ms
52,428 KB
testcase_09 AC 37 ms
52,112 KB
testcase_10 AC 33 ms
52,000 KB
testcase_11 AC 37 ms
52,500 KB
testcase_12 WA -
testcase_13 AC 32 ms
53,504 KB
testcase_14 AC 34 ms
51,876 KB
testcase_15 WA -
testcase_16 AC 35 ms
51,996 KB
testcase_17 WA -
testcase_18 AC 36 ms
53,428 KB
testcase_19 AC 33 ms
52,112 KB
testcase_20 AC 36 ms
51,872 KB
testcase_21 AC 34 ms
52,204 KB
testcase_22 AC 35 ms
52,260 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 33 ms
52,636 KB
testcase_26 WA -
testcase_27 AC 33 ms
52,556 KB
testcase_28 AC 33 ms
52,356 KB
testcase_29 AC 33 ms
52,400 KB
testcase_30 AC 34 ms
52,756 KB
testcase_31 AC 33 ms
51,624 KB
testcase_32 AC 34 ms
52,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())

if (a, b) in {(0, 0), (2, 2)}:
    print("E")
else:
    print("S" if min(a, b) < 1 else "P")
0