結果

問題 No.441 和か積
ユーザー kohei2019kohei2019
提出日時 2022-01-26 00:48:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 155 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 53,572 KB
最終ジャッジ日時 2024-12-17 22:20:44
合計ジャッジ時間 3,070 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,544 KB
testcase_01 AC 34 ms
51,804 KB
testcase_02 AC 36 ms
51,820 KB
testcase_03 AC 36 ms
52,276 KB
testcase_04 AC 39 ms
52,472 KB
testcase_05 AC 36 ms
52,108 KB
testcase_06 AC 35 ms
52,416 KB
testcase_07 AC 37 ms
52,280 KB
testcase_08 AC 37 ms
52,636 KB
testcase_09 AC 38 ms
52,204 KB
testcase_10 AC 36 ms
52,160 KB
testcase_11 AC 36 ms
52,924 KB
testcase_12 AC 36 ms
51,996 KB
testcase_13 AC 36 ms
52,212 KB
testcase_14 AC 37 ms
52,432 KB
testcase_15 AC 38 ms
53,572 KB
testcase_16 AC 37 ms
53,468 KB
testcase_17 AC 38 ms
52,460 KB
testcase_18 AC 36 ms
52,872 KB
testcase_19 AC 38 ms
52,632 KB
testcase_20 AC 38 ms
53,376 KB
testcase_21 AC 38 ms
52,840 KB
testcase_22 AC 36 ms
52,800 KB
testcase_23 AC 37 ms
52,192 KB
testcase_24 AC 38 ms
52,752 KB
testcase_25 AC 37 ms
53,292 KB
testcase_26 AC 38 ms
52,128 KB
testcase_27 AC 35 ms
52,140 KB
testcase_28 AC 39 ms
52,328 KB
testcase_29 AC 39 ms
53,136 KB
testcase_30 AC 37 ms
53,084 KB
testcase_31 AC 37 ms
51,948 KB
testcase_32 AC 38 ms
51,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = map(int,input().split())
if A==0 and B ==0:
    print('E')
elif A<=1 or B<=1:
    print('S')
elif A==2 and B==2:
    print('E')
else:
    print('P')
0