結果

問題 No.441 和か積
ユーザー RK Python
提出日時 2020-06-03 11:54:13
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 27 ms / 1,000 ms
コード長 182 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-25 02:46:52
合計ジャッジ時間 1,752 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = input().split()
if A == "0" and B == "0":
    print("E")
elif A == "2" and B == "2":
    print("E")
elif A in {"0", "1"} or B in {"0", "1"}:
    print("S")
else:
    print("P")
0