結果

問題 No.1860 Magnets
ユーザー horitaka1999horitaka1999
提出日時 2022-03-04 21:35:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 70 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 87,196 KB
実行使用メモリ 71,664 KB
最終ジャッジ日時 2023-09-26 00:13:34
合計ジャッジ時間 3,984 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,328 KB
testcase_01 AC 71 ms
71,564 KB
testcase_02 AC 70 ms
71,400 KB
testcase_03 AC 71 ms
71,596 KB
testcase_04 AC 71 ms
71,560 KB
testcase_05 AC 72 ms
71,072 KB
testcase_06 AC 72 ms
71,460 KB
testcase_07 AC 70 ms
71,384 KB
testcase_08 AC 72 ms
71,184 KB
testcase_09 AC 70 ms
71,316 KB
testcase_10 AC 74 ms
71,488 KB
testcase_11 AC 75 ms
71,216 KB
testcase_12 AC 72 ms
71,440 KB
testcase_13 AC 70 ms
71,196 KB
testcase_14 AC 72 ms
71,396 KB
testcase_15 AC 72 ms
71,216 KB
testcase_16 AC 71 ms
71,108 KB
testcase_17 AC 73 ms
71,584 KB
testcase_18 AC 72 ms
71,452 KB
testcase_19 AC 71 ms
71,480 KB
testcase_20 AC 74 ms
71,208 KB
testcase_21 AC 72 ms
71,496 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 71 ms
71,332 KB
testcase_26 AC 71 ms
71,248 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = map(int,input().split())
ans = max(2 * max(A,B) -1,0)
print(ans)
0