結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
42,236 KB
testcase_01 AC 170 ms
42,032 KB
testcase_02 AC 160 ms
42,260 KB
testcase_03 AC 170 ms
42,052 KB
testcase_04 AC 172 ms
42,204 KB
testcase_05 AC 170 ms
41,772 KB
testcase_06 AC 158 ms
42,208 KB
testcase_07 AC 169 ms
42,384 KB
testcase_08 AC 164 ms
42,220 KB
testcase_09 AC 162 ms
41,964 KB
testcase_10 AC 172 ms
42,056 KB
testcase_11 AC 163 ms
41,876 KB
testcase_12 AC 141 ms
42,056 KB
testcase_13 AC 163 ms
42,312 KB
testcase_14 AC 170 ms
41,936 KB
testcase_15 AC 159 ms
42,196 KB
testcase_16 AC 162 ms
41,884 KB
testcase_17 AC 170 ms
42,232 KB
testcase_18 WA -
testcase_19 AC 169 ms
42,440 KB
testcase_20 AC 153 ms
42,180 KB
testcase_21 AC 162 ms
42,068 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("1 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