結果

問題 No.1034 テスターのふっぴーさん
ユーザー ks2mks2m
提出日時 2020-04-24 21:55:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 1,038 bytes
コンパイル時間 2,039 ms
コンパイル使用メモリ 77,856 KB
実行使用メモリ 37,140 KB
最終ジャッジ日時 2024-10-15 02:45:58
合計ジャッジ時間 4,680 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,932 KB
testcase_01 AC 52 ms
36,888 KB
testcase_02 AC 54 ms
36,936 KB
testcase_03 AC 52 ms
36,692 KB
testcase_04 AC 51 ms
36,868 KB
testcase_05 AC 51 ms
36,568 KB
testcase_06 AC 54 ms
36,880 KB
testcase_07 AC 51 ms
36,844 KB
testcase_08 AC 51 ms
36,700 KB
testcase_09 AC 52 ms
36,580 KB
testcase_10 AC 53 ms
36,900 KB
testcase_11 AC 52 ms
36,908 KB
testcase_12 AC 52 ms
36,888 KB
testcase_13 AC 52 ms
36,944 KB
testcase_14 AC 53 ms
36,512 KB
testcase_15 AC 53 ms
36,940 KB
testcase_16 AC 53 ms
36,804 KB
testcase_17 AC 52 ms
36,920 KB
testcase_18 AC 53 ms
37,012 KB
testcase_19 AC 52 ms
36,784 KB
testcase_20 AC 58 ms
37,024 KB
testcase_21 AC 59 ms
36,896 KB
testcase_22 AC 57 ms
36,640 KB
testcase_23 AC 58 ms
37,032 KB
testcase_24 AC 57 ms
37,036 KB
testcase_25 AC 58 ms
36,892 KB
testcase_26 AC 57 ms
36,588 KB
testcase_27 AC 57 ms
36,872 KB
testcase_28 AC 57 ms
37,032 KB
testcase_29 AC 58 ms
37,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int q = Integer.parseInt(br.readLine());
		for (int i = 0; i < q; i++) {
			String[] sa = br.readLine().split(" ");
			long n = Integer.parseInt(sa[0]);
			long x = Integer.parseInt(sa[1]);
			long y = Integer.parseInt(sa[2]);

			long m = n - 1;
			long min = Math.min(x, m - x);
			min = Math.min(min, y);
			min = Math.min(min, m - y);
			long ans = -1;
			if (min > 0) {
				m -= min * 2;
				ans += n * min * 4;
				ans -= min * min * 4;
			}
			x -= min;
			y -= min;

			if (x == 0) {
				System.out.println(ans + y + 1);
			} else {
				ans += m;
				if (y == m) {
					System.out.println(ans + x + 1);
				} else {
					ans += m;
					if (x == m) {
						System.out.println(ans + m - y + 1);
					} else {
						ans += m;
						System.out.println(ans + m - x + 1);
					}
				}
			}
		}
		br.close();
	}
}
0