結果

問題 No.294 SuperFizzBuzz
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-19 16:45:08
言語 D
(dmd 2.107.1)
結果
AC  
実行時間 849 ms / 5,000 ms
コード長 2,300 bytes
コンパイル時間 703 ms
コンパイル使用メモリ 110,944 KB
実行使用メモリ 87,544 KB
最終ジャッジ日時 2023-09-03 22:42:02
合計ジャッジ時間 7,096 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 846 ms
87,468 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 51 ms
5,416 KB
testcase_09 AC 418 ms
44,948 KB
testcase_10 AC 845 ms
87,052 KB
testcase_11 AC 842 ms
86,792 KB
testcase_12 AC 843 ms
87,544 KB
testcase_13 AC 849 ms
86,720 KB
testcase_14 AC 847 ms
87,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.container, std.math, std.numeric, std.range, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

void chmin(T)(ref T t, in T f) { if (t > f) t = f; }
void chmax(T)(ref T t, in T f) { if (t < f) t = f; }

int binarySearch(T)(in T[] as, in bool delegate(T) test) { int low = -1, upp = cast(int)(as.length); for (; low + 1 < upp; ) { int mid = (low + upp) >> 1; (test(as[mid]) ? low : upp) = mid; } return upp; }
int lowerBound(T)(in T[] as, in T val) { return as.binarySearch((T a) => (a < val)); }
int upperBound(T)(in T[] as, in T val) { return as.binarySearch((T a) => (a <= val)); }


long nextCombination(long p) {
  long q = p + (p & -p);
  return q | ((p & ~q) / (p & -p)) >> 1;
}

enum LIM = 25;
int N;

void main() {
  auto binom = new long[][LIM];
  foreach (i; 0 .. LIM) {
    binom[i] = new long[i + 1];
    binom[i][0] = binom[i][i] = 1;
    foreach (j; 1 .. i) {
      binom[i][j] = binom[i - 1][j - 1] + binom[i - 1][j];
    }
  }
  
  try {
    for (; ; ) {
      N = readInt();
      long n = N;
      foreach (i; 0 .. LIM) {
        long sum;
        foreach (j; 0 .. i + 1) {
          if ((j + 1) % 3 == 0) {
            sum += binom[i][j];
          }
        }
        if (n > sum) {
          n -= sum;
        } else {
debug{
writeln(i," ",n," ",sum);stdout.flush;
}
          long[] ps;
          foreach (j; 0 .. i + 1) {
            if ((j + 1) % 3 == 0) {
              long p = (1L << j) - 1;
              foreach (_; 0 .. binom[i][j]) {
                ps ~= p;
                p = nextCombination(p);
              }
            }
          }
          ps.sort;
          const ans = ps[cast(int)(n) - 1];
          foreach_reverse (k; 0 .. i) {
            write(((ans >> k) & 1) ? 5 : 3);
          }
          writeln(5);
          break;
        }
      }
    }
  } catch (EOFException e) {
  }
}
0