結果

問題 No.1860 Magnets
ユーザー MtSakaMtSaka
提出日時 2021-11-21 22:39:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 1,776 ms
コンパイル使用メモリ 73,964 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-07-18 16:30:28
合計ジャッジ時間 6,000 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
52,860 KB
testcase_01 AC 119 ms
54,100 KB
testcase_02 AC 114 ms
53,928 KB
testcase_03 AC 106 ms
52,800 KB
testcase_04 AC 117 ms
53,712 KB
testcase_05 AC 112 ms
53,900 KB
testcase_06 AC 112 ms
53,448 KB
testcase_07 AC 111 ms
53,844 KB
testcase_08 AC 116 ms
53,980 KB
testcase_09 AC 114 ms
54,408 KB
testcase_10 AC 119 ms
53,656 KB
testcase_11 AC 113 ms
53,724 KB
testcase_12 AC 108 ms
53,588 KB
testcase_13 AC 114 ms
53,884 KB
testcase_14 AC 110 ms
53,820 KB
testcase_15 AC 112 ms
54,000 KB
testcase_16 AC 110 ms
53,324 KB
testcase_17 AC 111 ms
53,408 KB
testcase_18 AC 110 ms
52,948 KB
testcase_19 AC 113 ms
53,952 KB
testcase_20 AC 99 ms
52,692 KB
testcase_21 AC 114 ms
54,052 KB
testcase_22 AC 112 ms
53,864 KB
testcase_23 AC 111 ms
53,888 KB
testcase_24 AC 105 ms
52,768 KB
testcase_25 AC 116 ms
54,032 KB
testcase_26 AC 110 ms
53,000 KB
testcase_27 AC 113 ms
53,732 KB
testcase_28 AC 111 ms
54,156 KB
testcase_29 AC 105 ms
52,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		// 整数の入力
		int a = sc.nextInt(),b=sc.nextInt();
		// 出力
		System.out.println(a+b+Math.max(0,Math.abs(a-b)-1));
	}
}
0