結果

問題 No.294 SuperFizzBuzz
ユーザー GrenacheGrenache
提出日時 2015-10-24 00:01:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 278 ms / 5,000 ms
コード長 885 bytes
コンパイル時間 3,595 ms
コンパイル使用メモリ 77,176 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-09-13 04:12:02
合計ジャッジ時間 7,214 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
52,780 KB
testcase_01 AC 133 ms
54,248 KB
testcase_02 AC 270 ms
53,236 KB
testcase_03 AC 133 ms
54,296 KB
testcase_04 AC 134 ms
53,992 KB
testcase_05 AC 120 ms
52,888 KB
testcase_06 AC 132 ms
54,280 KB
testcase_07 AC 135 ms
54,344 KB
testcase_08 AC 151 ms
53,996 KB
testcase_09 AC 217 ms
54,168 KB
testcase_10 AC 222 ms
54,220 KB
testcase_11 AC 267 ms
54,284 KB
testcase_12 AC 272 ms
53,940 KB
testcase_13 AC 272 ms
54,184 KB
testcase_14 AC 278 ms
54,100 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 = 1; i < 26; i++) {
        	for (int k = 0; k < 0x1 << i; k++) {
        		int tmp = Integer.bitCount(k) * 5 + (i - Integer.bitCount(k)) * 3;

        		if (tmp % 3 == 0 && (k & 0x1) != 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