結果
問題 | No.294 SuperFizzBuzz |
ユーザー | tenten |
提出日時 | 2021-11-11 12:51:16 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,556 bytes |
コンパイル時間 | 2,517 ms |
コンパイル使用メモリ | 83,016 KB |
実行使用メモリ | 51,492 KB |
最終ジャッジ日時 | 2024-11-22 17:15:49 |
合計ジャッジ時間 | 6,943 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 62 ms
50,684 KB |
testcase_01 | AC | 62 ms
50,460 KB |
testcase_02 | AC | 527 ms
51,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 63 ms
50,228 KB |
testcase_05 | WA | - |
testcase_06 | AC | 64 ms
50,688 KB |
testcase_07 | AC | 66 ms
50,572 KB |
testcase_08 | AC | 103 ms
51,492 KB |
testcase_09 | AC | 359 ms
51,004 KB |
testcase_10 | WA | - |
testcase_11 | AC | 446 ms
51,164 KB |
testcase_12 | AC | 506 ms
51,016 KB |
testcase_13 | AC | 504 ms
51,328 KB |
testcase_14 | AC | 528 ms
51,284 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { static long[][] comb = new long[200][200]; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); long n = sc.nextInt() - 1; for (int i = 0; i < 200; i++) { for (int j = 0; j <= i; j++) { if (j == 0 || j == i) { comb[i][j] = 1; } else { comb[i][j] = comb[i - 1][j - 1] + comb[i - 1][j]; } } } int count = 2; while (true) { long sum = getSum(count); if (n <= sum) { break; } n -= sum; count++; } System.out.println(getString(count, n + 1) + "5"); } static long getSum(int count) { long sum = 0; for (int i = 0; i * 3 + 2 <= count; i++) { sum += getSum(count, i * 3 + 2); } return sum; } static long getSum(int all, int part) { return comb[all][part]; } static String getString(int count, long size) { int mask = 0; for (int i = 0; i < size; i++) { mask++; while (getPop(mask) % 3 < 2) { mask++; } } StringBuilder sb = new StringBuilder(); for (int i = 0; i < count; i++) { if (mask % 2 == 0) { sb.append("3"); } else { sb.append("5"); } mask >>= 1; } return sb.reverse().toString(); } static int getPop(int x) { int pop = 0; while (x > 0) { pop += x % 2; x /= 2; } return pop; } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String nextLine() throws Exception { return br.readLine(); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }