結果

問題 No.294 SuperFizzBuzz
ユーザー GrenacheGrenache
提出日時 2015-10-24 00:06:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 214 ms / 5,000 ms
コード長 870 bytes
コンパイル時間 3,586 ms
コンパイル使用メモリ 77,120 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-09-13 04:14:08
合計ジャッジ時間 6,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,924 KB
testcase_01 AC 134 ms
54,168 KB
testcase_02 AC 214 ms
54,256 KB
testcase_03 AC 134 ms
54,136 KB
testcase_04 AC 137 ms
54,068 KB
testcase_05 AC 135 ms
54,192 KB
testcase_06 AC 136 ms
53,884 KB
testcase_07 AC 139 ms
53,984 KB
testcase_08 AC 150 ms
54,096 KB
testcase_09 AC 179 ms
53,988 KB
testcase_10 AC 183 ms
54,012 KB
testcase_11 AC 202 ms
54,392 KB
testcase_12 AC 211 ms
54,212 KB
testcase_13 AC 196 ms
53,368 KB
testcase_14 AC 209 ms
54,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder294 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        int cnt = 0;
        out:
        for (int i = 3; i < 26; i++) {
        	for (int k = 1; k < 0x1 << i; k += 2) {
        		int tmp = Integer.bitCount(k) * 5 + (i - Integer.bitCount(k)) * 3;

        		if (tmp % 3 == 0) {
        			cnt++;
        			if (cnt == n) {
        				String btmp = "";
                		for (int l = i - 1; l >= 0; l--) {
                			if ((k & 0x1 << l) == 0) {
                				btmp += "3";
                			} else {
                				btmp += "5";
                			}
                		}
        				System.out.println(btmp.toString());
        				break out;
        			}
        		}
        	}
        }

        sc.close();
    }
}
0