結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー ks2mks2m
提出日時 2019-08-30 23:06:31
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,161 bytes
コンパイル時間 2,200 ms
コンパイル使用メモリ 79,080 KB
実行使用メモリ 50,564 KB
最終ジャッジ日時 2024-06-24 01:45:37
合計ジャッジ時間 5,460 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 57 ms
50,532 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 54 ms
49,888 KB
testcase_06 AC 54 ms
50,044 KB
testcase_07 AC 54 ms
50,452 KB
testcase_08 AC 55 ms
50,344 KB
testcase_09 AC 55 ms
50,280 KB
testcase_10 AC 55 ms
50,564 KB
testcase_11 AC 57 ms
50,308 KB
testcase_12 AC 54 ms
49,988 KB
testcase_13 AC 54 ms
50,024 KB
testcase_14 AC 56 ms
50,292 KB
testcase_15 AC 54 ms
50,376 KB
testcase_16 AC 55 ms
50,308 KB
testcase_17 AC 54 ms
50,232 KB
testcase_18 AC 56 ms
49,904 KB
testcase_19 AC 54 ms
50,420 KB
testcase_20 AC 54 ms
50,356 KB
testcase_21 AC 54 ms
50,192 KB
testcase_22 AC 55 ms
50,316 KB
testcase_23 AC 55 ms
50,372 KB
testcase_24 AC 53 ms
50,336 KB
testcase_25 AC 55 ms
50,064 KB
testcase_26 AC 54 ms
50,332 KB
testcase_27 AC 54 ms
50,024 KB
testcase_28 AC 55 ms
50,024 KB
testcase_29 AC 54 ms
50,456 KB
testcase_30 AC 55 ms
50,416 KB
testcase_31 AC 55 ms
50,368 KB
testcase_32 AC 55 ms
50,448 KB
testcase_33 AC 54 ms
49,860 KB
testcase_34 AC 55 ms
50,252 KB
testcase_35 AC 54 ms
50,008 KB
testcase_36 AC 55 ms
50,288 KB
testcase_37 AC 56 ms
50,396 KB
testcase_38 AC 55 ms
50,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		br.close();

		if (n == 32) {
			System.out.println("01011010");
			return;
		}

		List<Integer> list = new ArrayList<>();
		while (n > 0) {
			int n2 = (int) Math.sqrt(n);
			list.add(n2);
			n -= n2 * n2;
		}

		StringBuilder sb = new StringBuilder();
		for (int i = list.size() - 1; i >= 0; i--) {
			if (list.get(i) % 2 == 1) {
				sb.append(make(list.get(i), 0));
			}
		}

		int start = 0;
		for (int i = 0; i < list.size(); i++) {
			if (list.get(i) % 2 == 0) {
				sb.append(make(list.get(i), start));
				start ^= 1;
			}
		}
		System.out.println(sb.toString());
	}

	static String make(int len, int start) {
		StringBuilder sb = new StringBuilder();
		int s1 = start;
		int s2 = start ^ 1;
		for (int i = 0; i < len / 2; i++) {
			sb.append(s1).append(s2);
		}
		if (len % 2 == 1) {
			sb.append(s1);
		}
		return sb.toString();
	}
}
0