結果

問題 No.1860 Magnets
ユーザー dangodango
提出日時 2023-06-12 21:47:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 69 bytes
コンパイル時間 663 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 53,748 KB
最終ジャッジ日時 2024-06-11 21:46:50
合計ジャッジ時間 2,874 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,244 KB
testcase_01 AC 32 ms
52,620 KB
testcase_02 AC 36 ms
53,496 KB
testcase_03 AC 33 ms
51,676 KB
testcase_04 AC 34 ms
52,352 KB
testcase_05 AC 33 ms
53,004 KB
testcase_06 AC 32 ms
52,020 KB
testcase_07 AC 34 ms
53,032 KB
testcase_08 AC 32 ms
52,508 KB
testcase_09 AC 32 ms
51,944 KB
testcase_10 AC 32 ms
52,108 KB
testcase_11 AC 32 ms
51,824 KB
testcase_12 AC 31 ms
52,688 KB
testcase_13 AC 31 ms
52,512 KB
testcase_14 AC 31 ms
52,072 KB
testcase_15 AC 32 ms
52,388 KB
testcase_16 AC 30 ms
52,732 KB
testcase_17 AC 32 ms
52,140 KB
testcase_18 AC 31 ms
53,424 KB
testcase_19 AC 32 ms
53,748 KB
testcase_20 AC 31 ms
52,484 KB
testcase_21 AC 31 ms
52,444 KB
testcase_22 AC 32 ms
51,904 KB
testcase_23 AC 31 ms
51,868 KB
testcase_24 AC 31 ms
51,860 KB
testcase_25 AC 32 ms
52,204 KB
testcase_26 AC 32 ms
52,484 KB
testcase_27 AC 32 ms
52,200 KB
testcase_28 AC 31 ms
52,764 KB
testcase_29 AC 31 ms
51,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int,input().split())
print(A + B + max(0, abs(A - B) - 1))
0