結果

問題 No.294 SuperFizzBuzz
ユーザー ぴろずぴろず
提出日時 2015-10-23 22:40:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 200 ms / 5,000 ms
コード長 685 bytes
コンパイル時間 2,303 ms
コンパイル使用メモリ 76,612 KB
実行使用メモリ 41,928 KB
最終ジャッジ日時 2024-07-23 01:28:51
合計ジャッジ時間 5,486 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,340 KB
testcase_01 AC 142 ms
41,428 KB
testcase_02 AC 200 ms
41,364 KB
testcase_03 AC 136 ms
41,444 KB
testcase_04 AC 137 ms
41,372 KB
testcase_05 AC 137 ms
41,744 KB
testcase_06 AC 138 ms
41,928 KB
testcase_07 AC 122 ms
39,960 KB
testcase_08 AC 151 ms
41,612 KB
testcase_09 AC 174 ms
41,520 KB
testcase_10 AC 173 ms
41,224 KB
testcase_11 AC 190 ms
41,724 KB
testcase_12 AC 192 ms
41,292 KB
testcase_13 AC 193 ms
41,240 KB
testcase_14 AC 194 ms
41,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no294;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int count = 0;
		for(int i=2;;i++) {
			int five = Integer.bitCount(i);
			int three = 32 - Integer.numberOfLeadingZeros(i) - five;
//			System.out.println(Integer.toBinaryString(i) + ":" + three + "," + five);
//			System.out.println(Integer.toBinaryString(i).replace('0', '3').replace('1', '5').substring(1) + "5");
			if (five % 3 == 0) {
				count++;
			}
			if (count == n) {
				System.out.println(Integer.toBinaryString(i).replace('0', '3').replace('1', '5').substring(1) + "5");
				return;
			}
		}
	}

}
0