結果

問題 No.1860 Magnets
ユーザー HentciHentci
提出日時 2022-03-08 14:54:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 99 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 53,664 KB
最終ジャッジ日時 2024-07-23 14:38:19
合計ジャッジ時間 2,717 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,304 KB
testcase_01 AC 38 ms
52,216 KB
testcase_02 AC 38 ms
52,556 KB
testcase_03 AC 37 ms
53,164 KB
testcase_04 AC 37 ms
53,008 KB
testcase_05 AC 37 ms
52,464 KB
testcase_06 AC 37 ms
52,460 KB
testcase_07 AC 37 ms
52,948 KB
testcase_08 AC 37 ms
52,912 KB
testcase_09 AC 37 ms
51,900 KB
testcase_10 AC 38 ms
52,528 KB
testcase_11 AC 37 ms
51,948 KB
testcase_12 AC 36 ms
51,928 KB
testcase_13 AC 37 ms
52,260 KB
testcase_14 AC 37 ms
52,956 KB
testcase_15 AC 37 ms
52,888 KB
testcase_16 AC 37 ms
52,824 KB
testcase_17 AC 37 ms
52,820 KB
testcase_18 AC 37 ms
52,268 KB
testcase_19 AC 37 ms
52,788 KB
testcase_20 AC 37 ms
53,416 KB
testcase_21 AC 39 ms
52,400 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 38 ms
52,608 KB
testcase_26 AC 38 ms
53,520 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y = map(int, input().split())

mn = min(x, y)
mx = max(x, y)

print((mx - mn) * 2 + mn * 2 - 1) 
0