結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー ks2mks2m
提出日時 2019-08-30 23:04:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,093 bytes
コンパイル時間 2,424 ms
コンパイル使用メモリ 78,936 KB
実行使用メモリ 52,132 KB
最終ジャッジ日時 2024-06-24 01:45:09
合計ジャッジ時間 5,506 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 54 ms
49,976 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 54 ms
50,260 KB
testcase_06 AC 54 ms
50,556 KB
testcase_07 WA -
testcase_08 AC 55 ms
49,964 KB
testcase_09 AC 54 ms
50,508 KB
testcase_10 AC 54 ms
50,268 KB
testcase_11 AC 54 ms
50,064 KB
testcase_12 AC 55 ms
50,080 KB
testcase_13 AC 54 ms
50,216 KB
testcase_14 AC 54 ms
50,196 KB
testcase_15 AC 56 ms
50,184 KB
testcase_16 AC 53 ms
50,240 KB
testcase_17 AC 54 ms
50,208 KB
testcase_18 AC 55 ms
50,360 KB
testcase_19 AC 55 ms
50,136 KB
testcase_20 AC 54 ms
50,204 KB
testcase_21 AC 54 ms
50,216 KB
testcase_22 AC 55 ms
50,248 KB
testcase_23 AC 53 ms
50,276 KB
testcase_24 AC 53 ms
50,348 KB
testcase_25 AC 54 ms
49,880 KB
testcase_26 AC 54 ms
50,068 KB
testcase_27 AC 54 ms
49,736 KB
testcase_28 AC 54 ms
50,188 KB
testcase_29 AC 54 ms
50,360 KB
testcase_30 AC 54 ms
50,496 KB
testcase_31 AC 55 ms
50,288 KB
testcase_32 AC 55 ms
49,944 KB
testcase_33 AC 55 ms
49,876 KB
testcase_34 AC 54 ms
50,268 KB
testcase_35 AC 55 ms
50,288 KB
testcase_36 AC 54 ms
50,324 KB
testcase_37 AC 55 ms
52,132 KB
testcase_38 AC 54 ms
50,328 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();

		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