結果

問題 No.499 7進数変換
ユーザー keymoonkeymoon
提出日時 2019-04-19 01:16:40
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 711 bytes
コンパイル時間 790 ms
コンパイル使用メモリ 111,048 KB
実行使用メモリ 26,204 KB
最終ジャッジ日時 2024-09-22 10:51:45
合計ジャッジ時間 2,416 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 23 ms
25,820 KB
testcase_02 AC 22 ms
23,748 KB
testcase_03 AC 22 ms
23,648 KB
testcase_04 AC 22 ms
23,396 KB
testcase_05 AC 23 ms
25,680 KB
testcase_06 AC 22 ms
23,732 KB
testcase_07 AC 22 ms
23,516 KB
testcase_08 AC 23 ms
23,516 KB
testcase_09 AC 22 ms
26,204 KB
testcase_10 AC 24 ms
25,560 KB
testcase_11 AC 22 ms
23,780 KB
testcase_12 AC 23 ms
23,776 KB
testcase_13 AC 23 ms
21,556 KB
testcase_14 AC 22 ms
25,660 KB
testcase_15 AC 22 ms
23,628 KB
testcase_16 AC 23 ms
25,672 KB
testcase_17 AC 23 ms
25,936 KB
testcase_18 AC 22 ms
23,888 KB
testcase_19 AC 23 ms
23,856 KB
testcase_20 AC 22 ms
23,772 KB
testcase_21 AC 22 ms
23,648 KB
testcase_22 AC 22 ms
21,680 KB
testcase_23 AC 23 ms
21,688 KB
testcase_24 AC 22 ms
23,516 KB
testcase_25 AC 22 ms
25,556 KB
testcase_26 AC 22 ms
23,524 KB
testcase_27 AC 23 ms
23,776 KB
testcase_28 AC 23 ms
23,644 KB
testcase_29 AC 22 ms
23,648 KB
testcase_30 AC 24 ms
23,648 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.IO;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Numerics;
using System.Threading.Tasks;
using System.Text.RegularExpressions;
using static System.Math;
using Debug = System.Diagnostics.Debug;
using MethodImplOptions = System.Runtime.CompilerServices.MethodImplOptions;
using MethodImplAttribute = System.Runtime.CompilerServices.MethodImplAttribute;


static class P
{
    static void Main()
    {
        int n = int.Parse(Console.ReadLine());
        string res = "";
        while (n != 0)
        {
            res = (n % 7).ToString() + res;
            n /= 7;
        }
        Console.WriteLine(res);
    }
}
0