結果

問題 No.1603 Manhattan Social Distance
ユーザー ks2mks2m
提出日時 2021-07-16 21:26:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 74,684 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2024-07-06 08:16:53
合計ジャッジ時間 5,609 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,292 KB
testcase_01 AC 132 ms
53,916 KB
testcase_02 AC 133 ms
54,204 KB
testcase_03 AC 133 ms
53,848 KB
testcase_04 AC 134 ms
53,972 KB
testcase_05 AC 132 ms
53,892 KB
testcase_06 AC 131 ms
53,988 KB
testcase_07 AC 132 ms
54,080 KB
testcase_08 AC 133 ms
53,860 KB
testcase_09 AC 134 ms
53,840 KB
testcase_10 AC 132 ms
54,472 KB
testcase_11 AC 133 ms
54,316 KB
testcase_12 AC 131 ms
54,184 KB
testcase_13 AC 118 ms
52,796 KB
testcase_14 AC 131 ms
53,816 KB
testcase_15 AC 118 ms
52,948 KB
testcase_16 AC 133 ms
54,404 KB
testcase_17 AC 133 ms
54,212 KB
testcase_18 AC 136 ms
53,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int h = sc.nextInt();
		int w = sc.nextInt();
		sc.close();

		long ans = h + w - 2;
		int n2 = n / 2;
		ans *= n2;
		ans *= n - n2;
		System.out.println(ans);
	}
}
0