結果

問題 No.690 E869120 and Constructing Array 4
ユーザー tentententen
提出日時 2021-03-02 19:21:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 1,083 bytes
コンパイル時間 2,553 ms
コンパイル使用メモリ 78,728 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-10-03 01:56:41
合計ジャッジ時間 6,164 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,660 KB
testcase_01 AC 130 ms
41,388 KB
testcase_02 AC 114 ms
40,268 KB
testcase_03 AC 124 ms
41,144 KB
testcase_04 AC 126 ms
41,184 KB
testcase_05 AC 130 ms
41,396 KB
testcase_06 AC 115 ms
40,036 KB
testcase_07 AC 131 ms
41,336 KB
testcase_08 AC 125 ms
41,420 KB
testcase_09 AC 114 ms
40,172 KB
testcase_10 AC 114 ms
40,368 KB
testcase_11 AC 131 ms
41,452 KB
testcase_12 AC 131 ms
41,200 KB
testcase_13 AC 127 ms
41,256 KB
testcase_14 AC 124 ms
40,160 KB
testcase_15 AC 121 ms
40,408 KB
testcase_16 AC 129 ms
41,176 KB
testcase_17 AC 127 ms
41,424 KB
testcase_18 AC 128 ms
41,544 KB
testcase_19 AC 119 ms
40,952 KB
testcase_20 AC 131 ms
41,568 KB
testcase_21 AC 136 ms
41,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int k = sc.nextInt();
        ArrayList<Path> ans = new ArrayList<>();
        for (int i = 1; i <= 30; i++) {
            for (int j = i + 1; j <= 31; j++) {
                ans.add(new Path(i, j));
            }
        }
        for (int i = 29; i >= 0; i--) {
            if (k >= (1 << i)) {
                ans.add(new Path(i + 2, 32));
                k -= (1 << i);
            }
        }
        StringBuilder sb = new StringBuilder();
        sb.append("32 ").append(ans.size()).append("\n");
        for (Path p : ans) {
            sb.append(p).append("\n");
        }
        System.out.print(sb);
    }
    
    static class Path {
        int from;
        int to;
        
        public Path(int from, int to) {
            this.from = from;
            this.to = to;
        }
        
        public String toString() {
            return new StringBuilder().append(from).append(" ").append(to).toString();
        }
    }
}
0