結果

問題 No.942 プレゼント配り
ユーザー ks2mks2m
提出日時 2019-12-05 00:56:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 951 bytes
コンパイル時間 6,619 ms
コンパイル使用メモリ 79,748 KB
実行使用メモリ 90,320 KB
最終ジャッジ日時 2024-12-14 18:33:33
合計ジャッジ時間 12,863 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,416 KB
testcase_01 AC 259 ms
61,460 KB
testcase_02 AC 114 ms
52,756 KB
testcase_03 AC 129 ms
53,976 KB
testcase_04 AC 286 ms
62,984 KB
testcase_05 AC 271 ms
61,252 KB
testcase_06 WA -
testcase_07 AC 130 ms
54,008 KB
testcase_08 AC 254 ms
59,060 KB
testcase_09 AC 275 ms
60,112 KB
testcase_10 AC 129 ms
53,924 KB
testcase_11 AC 121 ms
53,472 KB
testcase_12 AC 133 ms
53,820 KB
testcase_13 AC 128 ms
53,960 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 131 ms
54,000 KB
testcase_19 AC 135 ms
54,184 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);
		long n = sc.nextLong();
		int k = sc.nextInt();
		sc.close();

		long n2 = n * (n + 1) / 2;
		if (n2 % k != 0) {
			System.out.println("No");
			return;
		}

		PrintWriter pw = new PrintWriter(System.out);
		pw.println("Yes");
		List<List<Integer>> list = new ArrayList<>(k);
		for (int i = 0; i < k; i++) {
			list.add(new ArrayList<>());
		}
		for (int i = 0; i < n; i++) {
			if (i / k % 2 == 0) {
				list.get(i % k).add(i + 1);
			} else {
				list.get(k - i % k - 1).add(i + 1);
			}
		}
		for (int i = 0; i < k; i++) {
			StringBuilder sb = new StringBuilder();
			for (int j : list.get(i)) {
				sb.append(j).append(' ');
			}
			sb.deleteCharAt(sb.length() - 1);
			pw.println(sb.toString());
		}
		pw.flush();
	}
}
0