結果
問題 | No.757 チャンパーノウン定数 (2) |
ユーザー | te-sh |
提出日時 | 2020-02-07 19:53:13 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 7,648 bytes |
コンパイル時間 | 1,478 ms |
コンパイル使用メモリ | 156,460 KB |
実行使用メモリ | 9,400 KB |
最終ジャッジ日時 | 2024-06-22 04:55:56 |
合計ジャッジ時間 | 3,259 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,948 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | AC | 1 ms
6,944 KB |
testcase_24 | AC | 1 ms
6,944 KB |
testcase_25 | AC | 1 ms
6,940 KB |
testcase_26 | AC | 1 ms
6,940 KB |
testcase_27 | AC | 1 ms
6,940 KB |
testcase_28 | AC | 16 ms
6,944 KB |
testcase_29 | AC | 17 ms
6,944 KB |
testcase_30 | AC | 2 ms
6,940 KB |
testcase_31 | AC | 2 ms
6,940 KB |
testcase_32 | AC | 1 ms
6,940 KB |
testcase_33 | AC | 3 ms
6,944 KB |
testcase_34 | AC | 8 ms
6,944 KB |
testcase_35 | AC | 2 ms
6,940 KB |
testcase_36 | AC | 2 ms
6,940 KB |
testcase_37 | AC | 15 ms
6,944 KB |
testcase_38 | AC | 14 ms
6,948 KB |
testcase_39 | AC | 17 ms
6,940 KB |
testcase_40 | AC | 21 ms
7,680 KB |
testcase_41 | AC | 22 ms
7,680 KB |
testcase_42 | AC | 8 ms
6,940 KB |
testcase_43 | AC | 10 ms
8,640 KB |
testcase_44 | AC | 26 ms
9,400 KB |
testcase_45 | AC | 20 ms
8,100 KB |
testcase_46 | AC | 9 ms
6,944 KB |
testcase_47 | AC | 23 ms
7,040 KB |
testcase_48 | AC | 15 ms
6,944 KB |
testcase_49 | AC | 17 ms
8,200 KB |
testcase_50 | AC | 1 ms
6,940 KB |
testcase_51 | AC | 1 ms
6,944 KB |
testcase_52 | AC | 1 ms
6,944 KB |
testcase_53 | AC | 1 ms
6,940 KB |
コンパイルメッセージ
Main.d(227): Deprecation: function `Main.IO!(makeGlobal, makeGlobal).IO.put!("{exit: true}", int).put.putMain!(c, int).putMain` function requires a dual-context, which is deprecated Main.d-mixin-215(215): instantiated from here: `putMain!(c, int)` Main.d(11): instantiated from here: `put!("{exit: true}", int)` Main.d(227): Deprecation: function `Main.IO!(makeGlobal, makeGlobal).IO.put!("{}", immutable(char)).put.putMain!(c, immutable(char)).putMain` function requires a dual-context, which is deprecated Main.d-mixin-215(215): instantiated from here: `putMain!(c, immutable(char))` Main.d(25): instantiated from here: `put!("{}", immutable(char))`
ソースコード
// URL: https://yukicoder.me/problems/no/757 import std.algorithm, std.array, std.container, std.math, std.range, std.typecons, std.string; version(unittest) {} else void main() { int B; io.getV(B); string s; io.getV(s); if (s == "1") io.put!"{exit: true}"(1); auto D = GmpInt(s, B)-1; auto len(int x) { auto bp = GmpInt(B)^^x; return bp*x - (bp-1)/(B-1); } auto f = iota(0, cast(int)s.length+1).lowerBoundBy!(x => len(x))(D).back; D -= len(f++); auto g = D/f + GmpInt(B)^^(f-1), h = D%GmpInt(f); io.put(g.toString(B)[h.toLong]); } auto lowerBoundBy(alias conv = "a", alias comp = "a<b", R, T)(R a, T v) { return a.sortedTuple!(conv, comp).lowerBound(tuple(a.front, v)).map!"a[0]"; } auto upperBoundBy(alias conv = "a", alias comp = "a<b", R, T)(R a, T v) { return a.sortedTuple!(conv, comp).upperBound(tuple(a.front, v)).map!"a[0]"; } auto sortedTuple(alias conv = "a", alias comp = "a<b", R)(R a) { import std.functional; alias convFun = unaryFun!conv, compFun = binaryFun!comp; return a.map!(e => tuple(e, convFun(e))).assumeSorted!((a, b) => compFun(a[1], b[1])); } struct GmpInt { import std.conv; @property static init() { return GmpInt(0); } @property value() { return toLong(); } @property value(long v) { __gmpz_init_set_si(&z, v); } alias value this; this(long v) { __gmpz_init_set_si(&z, v); } this(string s, int base = 10) { __gmpz_init_set_str(&z, s.toStringz, base); } long toLong() { return __gmpz_get_si(&z); } string toString(int base = 10) { import std.string; auto sz = __gmpz_sizeinbase(&z, base); auto buf = new char[](sz + 2); __gmpz_get_str(buf.ptr, base, &z); return buf.ptr.fromStringz.to!string; } bool opEquals(GmpInt v) { return __gmpz_cmp(&z, &v.z) == 0; } bool opEquals(long v) { return __gmpz_cmp_si(&z, v) == 0; } int opCmp(GmpInt v) { return __gmpz_cmp(&z, &v.z); } int opCmp(long v) { return __gmpz_cmp_si(&z, v); } GmpInt opAssign(long v) { __gmpz_init_set_si(&z, v); return this; } GmpInt opAssign(GmpInt v) { __gmpz_init_set(&z, &v.z); return this; } GmpInt opBinary(string op)(GmpInt v) if (op=="+"||op=="-"||op=="*"||op=="/"||op=="%") { auto r = GmpInt.init; static if (op == "+") __gmpz_add(&r.z, &z, &v.z); else if (op == "-") __gmpz_sub(&r.z, &z, &v.z); else if (op == "*") __gmpz_mul(&r.z, &z, &v.z); else if (op == "/") __gmpz_tdiv_q(&r.z, &z, &v.z); else if (op == "%") __gmpz_tdiv_r(&r.z, &z, &v.z); return r; } ref GmpInt opOpAssign(string op)(GmpInt v) if (op=="+"||op=="-"||op=="*"||op=="/"||op=="%") { static if (op == "+") __gmpz_add(&z, &z, &v.z); else if (op == "-") __gmpz_sub(&z, &z, &v.z); else if (op == "*") __gmpz_mul(&z, &z, &v.z); else if (op == "/") __gmpz_tdiv_q(&z, &z, &v.z); else if (op == "%") __gmpz_tdiv_r(&z, &z, &v.z); return this; } GmpInt opBinary(string op)(ulong v) if (op=="+"||op=="-"||op=="*"||op=="/"||op=="%"||op=="^^") { auto r = GmpInt.init; static if (op == "+") __gmpz_add_ui(&r.z, &z, v); else if (op == "-") __gmpz_sub_ui(&r.z, &z, v); else if (op == "*") __gmpz_mul_ui(&r.z, &z, v); else if (op == "/") __gmpz_tdiv_q_ui(&r.z, &z, v); else if (op == "%") __gmpz_tdiv_r_ui(&r.z, &z, v); else if (op == "^^") __gmpz_pow_ui(&r.z, &z, v); return r; } ref GmpInt opOpAssign(string op)(ulong v) if (op=="+"||op=="-"||op=="*"||op=="/"||op=="%"||op=="^^") { static if (op == "+") __gmpz_add_ui(&z, &z, v); else if (op == "-") __gmpz_sub_ui(&z, &z, v); else if (op == "*") __gmpz_mul_ui(&z, &z, v); else if (op == "/") __gmpz_tdiv_q_ui(&z, &z, v); else if (op == "%") __gmpz_tdiv_r_ui(&z, &z, v); else if (op == "^^") __gmpz_pow_ui(&z, &z, v); return this; } GmpInt sqrt() { auto r = GmpInt.init; __gmpz_sqrt(&r.z, &z); return r; } size_t popcnt() { return __gmpz_popcount(&z); } bool probabPrime(int reps = 20) { return __gmpz_probab_prime_p(&z, reps) != 0; } private __mpz_struct z; } GmpInt extGcd(GmpInt a, GmpInt b, out GmpInt x, out GmpInt y) { auto g = a; x = 1; y = 0; if (b) { g = extGcd(b, a%b, y, x); y -= a/b*x; } return g; } extern(C) pragma(inline, false) { alias __mp_limb_t = ulong; struct __mpz_struct { int _mp_alloc; int _mp_size; __mp_limb_t* _mp_d; } alias mpz_srcptr = const(__mpz_struct)*; alias mpz_ptr = __mpz_struct*; void __gmpz_init_set(mpz_ptr, mpz_srcptr); void __gmpz_init_set_si(mpz_ptr, long); int __gmpz_init_set_str(mpz_ptr, const char*, int); long __gmpz_get_si(mpz_srcptr); char *__gmpz_get_str(char*, int, mpz_srcptr); size_t __gmpz_sizeinbase(mpz_srcptr, int); int __gmpz_cmp(mpz_srcptr, mpz_srcptr); int __gmpz_cmp_si(mpz_srcptr, long); void __gmpz_add(mpz_ptr, mpz_srcptr, mpz_srcptr); void __gmpz_add_ui(mpz_ptr, mpz_srcptr, ulong); void __gmpz_sub(mpz_ptr, mpz_srcptr, mpz_srcptr); void __gmpz_sub_ui(mpz_ptr, mpz_srcptr, ulong); void __gmpz_mul(mpz_ptr, mpz_srcptr, mpz_srcptr); void __gmpz_mul_ui(mpz_ptr, mpz_srcptr, ulong); void __gmpz_tdiv_q(mpz_ptr, mpz_srcptr, mpz_srcptr); void __gmpz_tdiv_r(mpz_ptr, mpz_srcptr, mpz_srcptr); ulong __gmpz_tdiv_q_ui(mpz_ptr, mpz_srcptr, ulong); ulong __gmpz_tdiv_r_ui(mpz_ptr, mpz_srcptr, ulong); void __gmpz_pow_ui(mpz_ptr, mpz_srcptr, ulong); void __gmpz_sqrt(mpz_ptr, mpz_srcptr); size_t __gmpz_popcount(mpz_srcptr); int __gmpz_probab_prime_p(mpz_ptr, int reps); } pragma(lib, "gmp"); auto io = IO!()(); import std.stdio; struct IO(alias IN = stdin, alias OUT = stdout) { import std.conv, std.format, std.meta, std.traits, core.stdc.stdlib; auto getV(T...)(ref T v) { foreach (ref w; v) get(w); } auto getA(T)(size_t n, ref T v) if (hasAssignableElements!T) { v = new T(n); foreach (ref w; v) get(w); } auto getC(T...)(size_t n, ref T v) if (allSatisfy!(hasAssignableElements, T)) { foreach (ref w; v) w = new typeof(w)(n); foreach (i; 0..n) foreach (ref w; v) get(w[i]); } auto getM(T)(size_t r, size_t c, ref T v) if (hasAssignableElements!T && hasAssignableElements!(ElementType!T)) { v = new T(r); foreach (ref w; v) getA(c, w); } template getS(E...) { auto getS(T)(size_t n, ref T v) { v = new T(n); foreach (ref w; v) foreach (e; E) mixin("get(w."~e~");"); } } const struct PutConf { bool newline = true, flush, exit; string floatFormat = "%.10f", delimiter = " "; } auto put(alias conf = "{}", T...)(T v) { mixin("const PutConf c = "~conf~"; putMain!c(v);"); } auto putB(alias conf = "{}", S, T)(bool c, S t, T f) { if (c) put(t); else put(f); } auto putRaw(T...)(T v) { OUT.write(v); OUT.writeln; } private { dchar[] buf; auto sp = (new dchar[](0)).splitter; void nextLine() { IN.readln(buf); sp = buf.splitter; } auto get(T)(ref T v) { if (sp.empty) nextLine(); v = sp.front.to!T; sp.popFront(); } auto putMain(PutConf c, T...)(T v) { foreach (i, w; v) { putOne!c(w); if (i < v.length-1) OUT.write(c.delimiter); } static if (c.newline) OUT.writeln; static if (c.flush) OUT.flush(); static if (c.exit) exit(0); } auto putOne(PutConf c, T)(T v) { static if (isInputRange!T && !isSomeString!T) putRange!c(v); else if (isFloatingPoint!T) OUT.write(format(c.floatFormat, v)); else OUT.write(v); } auto putRange(PutConf c, T)(T v) { auto w = v; while (!w.empty) { putOne!c(w.front); w.popFront(); if (!w.empty) OUT.write(c.delimiter); } } } }