結果

問題 No.1619 Coccinellidae
ユーザー ks2mks2m
提出日時 2021-07-22 21:52:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,012 bytes
コンパイル時間 3,167 ms
コンパイル使用メモリ 79,104 KB
実行使用メモリ 59,416 KB
最終ジャッジ日時 2024-07-17 17:27:17
合計ジャッジ時間 7,835 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,940 KB
testcase_01 AC 249 ms
57,116 KB
testcase_02 AC 264 ms
59,404 KB
testcase_03 AC 132 ms
54,184 KB
testcase_04 AC 258 ms
59,268 KB
testcase_05 AC 220 ms
57,416 KB
testcase_06 AC 132 ms
53,880 KB
testcase_07 AC 236 ms
57,180 KB
testcase_08 AC 219 ms
57,152 KB
testcase_09 AC 133 ms
54,124 KB
testcase_10 AC 228 ms
57,240 KB
testcase_11 AC 245 ms
56,856 KB
testcase_12 WA -
testcase_13 AC 259 ms
59,228 KB
testcase_14 AC 262 ms
59,416 KB
testcase_15 WA -
testcase_16 AC 135 ms
54,304 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();
		long m = sc.nextLong();
		long k = sc.nextLong();
		sc.close();

		long last = m - (long) (n - 1) * (n - 2) / 2;
		long sum = 0;
		int s = 0;
		int x = 0;
		for (int i = 1; i < n; i++) {
			sum += n - i;
			if (sum >= k) {
				s = i;
				sum -= n - i;
				x = (int) (k - sum);
				break;
			}
		}
		List<Integer> list = new ArrayList<>();
		int cnt = 0;
		if (cnt == x) {
			list.add(s - 1);
		}
		for (int i = s; i < n; i++) {
			list.add(i);
			cnt++;
			if (cnt == x) {
				list.add(s - 1);
			}
		}
		for (int i = s - 2; i >= 0; i--) {
			list.add(i);
		}
		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < n; i++) {
			if (list.get(i) == n - 1) {
				pw.println(last);
			} else {
				pw.println(list.get(i));
			}
		}
		pw.flush();
	}
}
0