結果

問題 No.630 門松グラフ
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2018-01-05 21:38:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 347 ms / 1,500 ms
コード長 2,420 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 80,252 KB
実行使用メモリ 46,752 KB
最終ジャッジ日時 2024-06-02 10:02:51
合計ジャッジ時間 9,721 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
40,568 KB
testcase_01 AC 48 ms
36,984 KB
testcase_02 AC 48 ms
37,120 KB
testcase_03 AC 87 ms
40,308 KB
testcase_04 AC 89 ms
40,736 KB
testcase_05 AC 50 ms
36,828 KB
testcase_06 AC 49 ms
37,116 KB
testcase_07 AC 91 ms
40,384 KB
testcase_08 AC 92 ms
40,440 KB
testcase_09 AC 49 ms
36,772 KB
testcase_10 AC 49 ms
37,196 KB
testcase_11 AC 88 ms
40,524 KB
testcase_12 AC 91 ms
40,488 KB
testcase_13 AC 49 ms
37,048 KB
testcase_14 AC 92 ms
40,252 KB
testcase_15 AC 100 ms
40,556 KB
testcase_16 AC 100 ms
40,296 KB
testcase_17 AC 93 ms
40,428 KB
testcase_18 AC 91 ms
40,392 KB
testcase_19 AC 105 ms
40,216 KB
testcase_20 AC 347 ms
46,272 KB
testcase_21 AC 50 ms
36,760 KB
testcase_22 AC 337 ms
46,192 KB
testcase_23 AC 48 ms
37,004 KB
testcase_24 AC 277 ms
46,044 KB
testcase_25 AC 49 ms
37,092 KB
testcase_26 AC 264 ms
45,524 KB
testcase_27 AC 253 ms
45,356 KB
testcase_28 AC 346 ms
46,548 KB
testcase_29 AC 308 ms
45,860 KB
testcase_30 AC 305 ms
46,736 KB
testcase_31 AC 296 ms
45,700 KB
testcase_32 AC 270 ms
45,228 KB
testcase_33 AC 221 ms
44,004 KB
testcase_34 AC 270 ms
46,280 KB
testcase_35 AC 259 ms
46,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


class Main {
    public static void main(String[] args) {
        MyScanner sc = new MyScanner();
        out = new PrintWriter(new BufferedOutputStream(System.out));
        int n=sc.nextInt();
        int m=sc.nextInt();
        long nl=n;
        if(m<n-1||(nl/2)*(nl-nl/2)<m){
            out.println("NO");
            out.close();
            return;
        }
        out.println("YES");
        int k=n/2;
        int[]a=new int[n];
        for(int i=0;i<n;++i)a[i]=i+1;
        for(int i=0;i<n;++i)
            out.print(a[i]+(i==n-1?"\n":" "));
        for(int i=0;i<k;++i){
            int x=i;
            int y=k;
            out.println((x+1)+" "+(y+1));
        }
        for(int i=k+1;i<n;++i){
            int x=0;
            int y=i;
            out.println((x+1)+" "+(y+1));
        }
        for(int i=n-1;i<m;++i){
            int j=i-n+1;
            int x=j%(k-1)+1;
            int y=j/(k-1)+k+1;
            out.println((x+1)+" "+(y+1));
        }
        out.close();
    }
    // http://codeforces.com/blog/entry/7018
    //-----------PrintWriter for faster output---------------------------------
    public static PrintWriter out;
    //-----------MyScanner class for faster input----------
    public static class MyScanner {
        BufferedReader br;
        StringTokenizer st;
        public MyScanner() {
            br = new BufferedReader(new InputStreamReader(System.in));
        }
        String next() {
            while (st == null || !st.hasMoreElements()) {
                try {
                    st = new StringTokenizer(br.readLine());
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            return st.nextToken();
        }
        int nextInt() {
            return Integer.parseInt(next());
        }
        long nextLong() {
            return Long.parseLong(next());
        }
        double nextDouble() {
            return Double.parseDouble(next());
        }
        String nextLine(){
            String str = "";
            try {
                str = br.readLine();
            } catch (IOException e) {
                e.printStackTrace();
            }
            return str;
        }
        int[] nextIntArray(int n){
            int[]r=new int[n];
            for(int i=0;i<n;++i)r[i]=nextInt();
            return r;
        }
    }
}
0