結果

問題 No.782 マイナス進数
ユーザー bluemeganebluemegane
提出日時 2021-05-08 11:08:24
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 652 bytes
コンパイル時間 3,741 ms
コンパイル使用メモリ 112,228 KB
実行使用メモリ 32,520 KB
最終ジャッジ日時 2024-09-16 09:06:13
合計ジャッジ時間 4,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
21,948 KB
testcase_01 AC 26 ms
24,312 KB
testcase_02 AC 64 ms
26,360 KB
testcase_03 AC 67 ms
30,344 KB
testcase_04 AC 70 ms
28,292 KB
testcase_05 AC 65 ms
26,108 KB
testcase_06 AC 68 ms
28,416 KB
testcase_07 AC 79 ms
26,244 KB
testcase_08 AC 68 ms
28,168 KB
testcase_09 AC 66 ms
28,400 KB
testcase_10 AC 65 ms
28,144 KB
testcase_11 AC 74 ms
28,428 KB
testcase_12 AC 72 ms
28,440 KB
testcase_13 AC 93 ms
28,556 KB
testcase_14 AC 73 ms
30,472 KB
testcase_15 AC 75 ms
28,436 KB
testcase_16 AC 72 ms
30,336 KB
testcase_17 AC 85 ms
30,208 KB
testcase_18 AC 73 ms
28,164 KB
testcase_19 AC 80 ms
28,300 KB
testcase_20 AC 74 ms
30,592 KB
testcase_21 AC 82 ms
30,472 KB
testcase_22 AC 75 ms
28,424 KB
testcase_23 AC 70 ms
30,604 KB
testcase_24 AC 95 ms
30,344 KB
testcase_25 AC 74 ms
32,520 KB
testcase_26 AC 76 ms
26,260 KB
testcase_27 AC 74 ms
28,040 KB
testcase_28 AC 73 ms
30,220 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 -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System;

public class hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var t = int.Parse(line[0]);
        var b = int.Parse(line[1]);
        while (t-- > 0)
        {
            var n = int.Parse(Console.ReadLine().Trim());
            var ans = new List<int>();
            while (n != 0)
            {
                var mod = n % b;
                n /= b;
                if (mod < 0) { n++; mod -= b; }
                ans.Add(mod);
            }
            ans.Reverse();
            Console.WriteLine(string.Join("", ans));
        }
    }
}
0