結果

問題 No.499 7進数変換
ユーザー bluemeganebluemegane
提出日時 2018-09-14 07:45:25
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 1,000 ms
コード長 463 bytes
コンパイル時間 803 ms
コンパイル使用メモリ 112,576 KB
実行使用メモリ 26,196 KB
最終ジャッジ日時 2024-07-01 04:36:21
合計ジャッジ時間 2,604 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,916 KB
testcase_01 AC 25 ms
21,936 KB
testcase_02 AC 26 ms
23,776 KB
testcase_03 AC 26 ms
23,600 KB
testcase_04 AC 26 ms
23,988 KB
testcase_05 AC 25 ms
21,680 KB
testcase_06 AC 26 ms
25,752 KB
testcase_07 AC 26 ms
23,744 KB
testcase_08 AC 27 ms
26,072 KB
testcase_09 AC 25 ms
23,728 KB
testcase_10 AC 26 ms
23,884 KB
testcase_11 AC 26 ms
23,904 KB
testcase_12 AC 26 ms
23,984 KB
testcase_13 AC 26 ms
23,868 KB
testcase_14 AC 26 ms
24,028 KB
testcase_15 AC 26 ms
25,916 KB
testcase_16 AC 26 ms
24,128 KB
testcase_17 AC 26 ms
23,776 KB
testcase_18 AC 26 ms
24,032 KB
testcase_19 AC 27 ms
24,116 KB
testcase_20 AC 27 ms
26,196 KB
testcase_21 AC 26 ms
23,772 KB
testcase_22 AC 26 ms
23,776 KB
testcase_23 AC 26 ms
23,988 KB
testcase_24 AC 25 ms
23,652 KB
testcase_25 AC 26 ms
23,900 KB
testcase_26 AC 27 ms
26,052 KB
testcase_27 AC 26 ms
23,900 KB
testcase_28 AC 26 ms
23,852 KB
testcase_29 AC 26 ms
25,920 KB
testcase_30 AC 26 ms
24,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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
{
    public static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        Console.WriteLine(getAns(n, 7));
    }
    public static string getAns(int n, int a)
    {
        var t = new List<int>();
        while (n >= a)
        {
            t.Add(n % a);
            n /= a;
        }
        t.Add(n);
        t.Reverse();
        return string.Join("", t);
    }
}
0