結果
問題 | No.441 和か積 |
ユーザー |
![]() |
提出日時 | 2020-04-02 17:26:04 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 32 ms / 1,000 ms |
コード長 | 214 bytes |
コンパイル時間 | 93 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-28 15:12:10 |
合計ジャッジ時間 | 2,026 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
ソースコード
import sysinput=lambda: sys.stdin.readline().rstrip()a,b=map(int,input().split())if a==0 and b==0:print("E")elif a==2 and b==2:print("E")elif a==1 or b==1 or a==0 or b==0:print("S")else:print("P")