結果
問題 | No.782 マイナス進数 |
ユーザー | iicafiaxus |
提出日時 | 2019-01-11 22:51:42 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,165 bytes |
コンパイル時間 | 921 ms |
コンパイル使用メモリ | 127,216 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-13 02:40:10 |
合計ジャッジ時間 | 3,538 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 22 ms
6,940 KB |
testcase_03 | AC | 27 ms
6,944 KB |
testcase_04 | AC | 31 ms
6,940 KB |
testcase_05 | AC | 24 ms
6,944 KB |
testcase_06 | AC | 23 ms
6,944 KB |
testcase_07 | AC | 43 ms
6,940 KB |
testcase_08 | AC | 26 ms
6,944 KB |
testcase_09 | AC | 22 ms
6,940 KB |
testcase_10 | AC | 23 ms
6,940 KB |
testcase_11 | AC | 43 ms
6,940 KB |
testcase_12 | AC | 37 ms
6,940 KB |
testcase_13 | AC | 85 ms
6,944 KB |
testcase_14 | AC | 37 ms
6,944 KB |
testcase_15 | AC | 43 ms
6,940 KB |
testcase_16 | AC | 37 ms
6,940 KB |
testcase_17 | AC | 63 ms
6,944 KB |
testcase_18 | AC | 37 ms
6,940 KB |
testcase_19 | AC | 53 ms
6,944 KB |
testcase_20 | AC | 38 ms
6,940 KB |
testcase_21 | AC | 58 ms
6,944 KB |
testcase_22 | AC | 41 ms
6,940 KB |
testcase_23 | AC | 33 ms
6,940 KB |
testcase_24 | AC | 84 ms
6,944 KB |
testcase_25 | AC | 36 ms
6,940 KB |
testcase_26 | AC | 48 ms
6,940 KB |
testcase_27 | AC | 43 ms
6,940 KB |
testcase_28 | AC | 35 ms
6,940 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
import std.stdio, std.conv, std.string, std.bigint; import std.math, std.random, std.datetime; import std.array, std.range, std.algorithm, std.container, std.format; string read(){ static string[] ss; while(!ss.length) ss = readln.chomp.split; string res = ss[0]; ss.popFront; return res; } void main(){ int t = read.to!int; int b = read.to!int; long[] ns; foreach(i; 0 .. t) ns ~= read.to!long; foreach(n; ns){ int[] xs = f(n, -b); for(int i = 0; i < xs.length; i ++){ debug writeln("xs:", xs); if(i % 2 == 0) continue; else{ // [..., x, ...] を [..., (-b - x), 1, ...] に変換 int x = xs[i]; if(x == 0) continue; xs[i] = -b - x; for(int j = i + 1; j <= n; j ++){ if(j == xs.length){ xs ~= 1; break; } else if(xs[j] < -b - 1){ xs[j] += 1; break; } else{ xs[j] = 0; continue; } } } } string ans = ""; foreach_reverse(x; xs) ans ~= x.to!string; ans.writeln; } } // nを通常のb進で表したもの(1のけたから順に) int[] f(long n, int b){ int[] res; long x = n; while(x > 0){ res ~= x % b; x /= b; } return res; }