結果

問題 No.441 和か積
ユーザー nbisco
提出日時 2017-01-15 21:53:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 145 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-21 13:46:15
合計ジャッジ時間 2,186 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input().split(" ")

if s[0][0] == '0' or s[1][0] == '0':
    print("S")
elif s[0] == "2" and s[1] == "2":
    print("E")
else:
    print("P")
0