結果

問題 No.1519 Diversity
ユーザー ks2mks2m
提出日時 2021-05-28 21:17:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 4,816 ms
コンパイル使用メモリ 77,088 KB
実行使用メモリ 48,748 KB
最終ジャッジ日時 2024-11-07 08:53:26
合計ジャッジ時間 7,068 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,772 KB
testcase_01 AC 150 ms
42,224 KB
testcase_02 AC 154 ms
42,444 KB
testcase_03 AC 234 ms
44,032 KB
testcase_04 AC 256 ms
45,988 KB
testcase_05 AC 153 ms
42,092 KB
testcase_06 AC 269 ms
48,628 KB
testcase_07 AC 155 ms
42,064 KB
testcase_08 AC 219 ms
43,260 KB
testcase_09 AC 232 ms
44,092 KB
testcase_10 AC 253 ms
45,216 KB
testcase_11 AC 147 ms
42,100 KB
testcase_12 AC 268 ms
48,340 KB
testcase_13 AC 273 ms
48,664 KB
testcase_14 AC 269 ms
48,748 KB
testcase_15 AC 258 ms
48,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.List;
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();
		sc.close();

		int n2 = n / 2;
		List<String> list = new ArrayList<>();
		int x = n - 1;
		for (int i = 1; i <= n2; i++) {
			for (int j = 1; j <= x; j++) {
				list.add(i + " " + (i + j));
			}
			x -= 2;
		}

		PrintWriter pw = new PrintWriter(System.out);
		pw.println(list.size());
		for (String s : list) {
			pw.println(s);
		}
		pw.flush();
	}
}
0