結果

問題 No.441 和か積
ユーザー jamadjamad
提出日時 2017-08-08 06:15:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 65 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 10,704 KB
実行使用メモリ 8,008 KB
最終ジャッジ日時 2023-08-02 04:04:51
合計ジャッジ時間 1,759 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 15 ms
7,848 KB
testcase_02 AC 14 ms
7,900 KB
testcase_03 AC 14 ms
7,768 KB
testcase_04 AC 14 ms
7,856 KB
testcase_05 AC 14 ms
7,788 KB
testcase_06 AC 15 ms
7,792 KB
testcase_07 AC 14 ms
7,772 KB
testcase_08 WA -
testcase_09 AC 13 ms
7,792 KB
testcase_10 AC 13 ms
7,796 KB
testcase_11 AC 13 ms
7,792 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 15 ms
7,828 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 13 ms
7,908 KB
testcase_21 AC 13 ms
7,780 KB
testcase_22 AC 13 ms
7,904 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 13 ms
7,720 KB
testcase_28 AC 13 ms
7,808 KB
testcase_29 AC 13 ms
7,720 KB
testcase_30 AC 13 ms
7,848 KB
testcase_31 AC 14 ms
7,792 KB
testcase_32 AC 14 ms
7,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
x,y=a+b,a*b
print('EPS'[x!=y+(y<x)])
0