結果

問題 No.1619 Coccinellidae
ユーザー merlinmerlin
提出日時 2021-07-22 22:52:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 1,140 bytes
コンパイル時間 2,612 ms
コンパイル使用メモリ 80,996 KB
実行使用メモリ 63,624 KB
最終ジャッジ日時 2024-07-17 19:19:48
合計ジャッジ時間 6,187 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
50,872 KB
testcase_01 AC 206 ms
61,604 KB
testcase_02 AC 225 ms
61,268 KB
testcase_03 AC 63 ms
50,640 KB
testcase_04 AC 227 ms
63,624 KB
testcase_05 AC 179 ms
57,724 KB
testcase_06 AC 61 ms
50,408 KB
testcase_07 AC 179 ms
61,624 KB
testcase_08 AC 163 ms
57,496 KB
testcase_09 AC 61 ms
50,632 KB
testcase_10 AC 163 ms
57,752 KB
testcase_11 AC 190 ms
61,352 KB
testcase_12 AC 72 ms
50,640 KB
testcase_13 AC 214 ms
62,960 KB
testcase_14 AC 228 ms
61,644 KB
testcase_15 AC 60 ms
50,664 KB
testcase_16 AC 61 ms
50,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        String s[]=bu.readLine().split(" ");
        int n=Integer.parseInt(s[0]),i;
        long m=Long.parseLong(s[1]),k=Long.parseLong(s[2]),sum=0;
        Deque<Long> dq=new LinkedList<>();
        for(i=0;i<n;i++)
        {
            dq.addLast((long)i);
            sum+=i;
        }
        long v=dq.pollLast();
        v+=m-sum;
        dq.addLast(v);

        int cur=n-1;
        Queue<Long> q=new LinkedList<>();
        while(cur>=0 && k-cur>=0)    //one by one take largest and place it after the last appended value
        {
            q.add(dq.pollLast());
            k-=cur;
            cur--;
        }

        while(!q.isEmpty()) sb.append(q.poll()+"\n");
        while(dq.size()>k+1) sb.append(dq.pollFirst()+"\n");
        if(!dq.isEmpty()) sb.append(dq.pollLast()+"\n");
        while(!dq.isEmpty()) sb.append(dq.pollFirst()+"\n");
        System.out.print(sb);
    }
}
0