結果
問題 | No.294 SuperFizzBuzz |
ユーザー | tenten |
提出日時 | 2020-12-23 16:13:36 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 604 ms / 5,000 ms |
コード長 | 1,743 bytes |
コンパイル時間 | 2,984 ms |
コンパイル使用メモリ | 82,860 KB |
実行使用メモリ | 54,404 KB |
最終ジャッジ日時 | 2024-09-21 16:25:19 |
合計ジャッジ時間 | 7,886 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 141 ms
54,148 KB |
testcase_01 | AC | 138 ms
53,864 KB |
testcase_02 | AC | 604 ms
54,100 KB |
testcase_03 | AC | 137 ms
54,168 KB |
testcase_04 | AC | 143 ms
54,404 KB |
testcase_05 | AC | 139 ms
54,260 KB |
testcase_06 | AC | 142 ms
53,940 KB |
testcase_07 | AC | 137 ms
54,024 KB |
testcase_08 | AC | 166 ms
54,284 KB |
testcase_09 | AC | 428 ms
54,100 KB |
testcase_10 | AC | 139 ms
53,828 KB |
testcase_11 | AC | 518 ms
54,328 KB |
testcase_12 | AC | 556 ms
54,136 KB |
testcase_13 | AC | 578 ms
54,156 KB |
testcase_14 | AC | 601 ms
54,264 KB |
ソースコード
import java.util.*; public class Main { static final int MAX = 26; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[][] comb = new int[MAX][MAX]; int max = 0; for (int i = 0; i < MAX; i++) { for (int j = 0; j <= i; j++) { if (j == 0 || i == j) { comb[i][j] = 1; } else { comb[i][j] = comb[i - 1][j - 1] + comb[i - 1][j]; } } } int[] counts = new int[MAX]; for (int i = 2; i < MAX; i++) { for (int j = 2; j <= i; j += 3) { counts[i] += comb[i][j]; } } int idx = 0; for (int i = 2; i < MAX; i++) { if (n > counts[i]) { n -= counts[i]; } else { idx = i; break; } } for (int i = 0; i < (1 << idx); i++) { if (getCount(i) % 3 == 2) { n--; } if (n == 0) { System.out.println(getNum(i, idx)); return; } } } static String getNum(int x, int length) { StringBuilder sb = new StringBuilder(); for (int i = 0; i < length; i++) { if (x % 2 == 0) { sb.append("3"); } else { sb.append("5"); } x /= 2; } return sb.reverse() + "5"; } static int getCount(int x) { int count = 0; while (x > 0) { count += x % 2; x /= 2; } return count; } }