結果

問題 No.1619 Coccinellidae
ユーザー ks2mks2m
提出日時 2021-07-22 21:49:30
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 970 bytes
コンパイル時間 3,309 ms
コンパイル使用メモリ 79,316 KB
実行使用メモリ 48,176 KB
最終ジャッジ日時 2024-07-17 17:16:44
合計ジャッジ時間 8,994 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,236 KB
testcase_01 AC 248 ms
47,304 KB
testcase_02 AC 265 ms
48,024 KB
testcase_03 RE -
testcase_04 AC 263 ms
48,176 KB
testcase_05 AC 236 ms
46,516 KB
testcase_06 AC 138 ms
41,436 KB
testcase_07 AC 238 ms
46,292 KB
testcase_08 AC 231 ms
46,728 KB
testcase_09 RE -
testcase_10 AC 226 ms
46,128 KB
testcase_11 AC 242 ms
46,540 KB
testcase_12 AC 138 ms
41,504 KB
testcase_13 AC 267 ms
47,888 KB
testcase_14 AC 268 ms
47,912 KB
testcase_15 AC 136 ms
41,828 KB
testcase_16 RE -
権限があれば一括ダウンロードができます

ソースコード

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;
		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