結果

問題 No.294 SuperFizzBuzz
ユーザー GrenacheGrenache
提出日時 2015-10-23 23:56:17
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,002 bytes
コンパイル時間 3,739 ms
コンパイル使用メモリ 76,216 KB
実行使用メモリ 54,552 KB
最終ジャッジ日時 2024-09-13 04:09:27
合計ジャッジ時間 37,405 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,932 KB
testcase_01 AC 136 ms
54,204 KB
testcase_02 TLE -
testcase_03 AC 137 ms
53,980 KB
testcase_04 AC 135 ms
54,140 KB
testcase_05 AC 134 ms
54,292 KB
testcase_06 AC 137 ms
53,944 KB
testcase_07 AC 144 ms
54,176 KB
testcase_08 AC 403 ms
54,200 KB
testcase_09 AC 2,969 ms
54,096 KB
testcase_10 AC 2,979 ms
54,244 KB
testcase_11 AC 4,879 ms
53,980 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
権限があれば一括ダウンロードができます

ソースコード

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 = 0;
        		for (int l = i - 1; l >= 0; l--) {
        			if ((k & 0x1 << l) == 0) {
        				tmp += 3;
        			} else {
        				tmp += 5;
        			}
        		}
        		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