結果

問題 No.690 E869120 and Constructing Array 4
ユーザー GrenacheGrenache
提出日時 2018-05-19 12:03:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 1,000 ms
コード長 1,096 bytes
コンパイル時間 3,697 ms
コンパイル使用メモリ 79,836 KB
実行使用メモリ 42,324 KB
最終ジャッジ日時 2024-06-28 14:21:05
合計ジャッジ時間 8,322 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
41,740 KB
testcase_01 AC 156 ms
42,280 KB
testcase_02 AC 155 ms
42,036 KB
testcase_03 AC 157 ms
42,204 KB
testcase_04 AC 160 ms
42,080 KB
testcase_05 AC 162 ms
41,940 KB
testcase_06 AC 165 ms
42,132 KB
testcase_07 AC 165 ms
42,120 KB
testcase_08 AC 163 ms
42,088 KB
testcase_09 AC 151 ms
41,376 KB
testcase_10 AC 162 ms
42,016 KB
testcase_11 AC 153 ms
41,972 KB
testcase_12 AC 157 ms
41,416 KB
testcase_13 AC 156 ms
42,020 KB
testcase_14 AC 162 ms
41,812 KB
testcase_15 AC 156 ms
42,048 KB
testcase_16 AC 167 ms
42,032 KB
testcase_17 AC 164 ms
42,324 KB
testcase_18 AC 128 ms
41,400 KB
testcase_19 AC 149 ms
40,864 KB
testcase_20 AC 164 ms
41,852 KB
testcase_21 AC 155 ms
42,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder690 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int k = sc.nextInt();

		if (k == 0) {
			pr.println("2 0");

			return;
		}

		int n = 32;
		List<Integer> d1 = new ArrayList<>();
		List<Integer> d2 = new ArrayList<>();
		for (int i = 1; i < n - 1; i++) {
			for (int j = 0; j < i; j++) {
				d1.add(j);
				d2.add(i);
			}

			if ((k & 0x1 << (i - 1)) != 0) {
				d1.add(i);
				d2.add(n - 1);
			}
		}

		pr.printf("%d %d\n", n, d1.size());
		for (int i = 0, size = d1.size(); i < size; i++) {
			pr.printf("%d %d\n", d1.get(i) + 1, d2.get(i) + 1);
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes()));
		pr = new Printer(System.out);

		solve();

//		pr.close();
		pr.flush();
//		sc.close();
	}

	static String INPUT = null;

	private static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0