結果

問題 No.499 7進数変換
ユーザー PE11PE11
提出日時 2017-10-27 17:50:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 1,000 ms
コード長 563 bytes
コンパイル時間 1,176 ms
コンパイル使用メモリ 110,188 KB
実行使用メモリ 26,464 KB
最終ジャッジ日時 2024-11-21 21:20:34
合計ジャッジ時間 3,097 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,108 KB
testcase_01 AC 25 ms
26,176 KB
testcase_02 AC 26 ms
26,464 KB
testcase_03 AC 26 ms
24,388 KB
testcase_04 AC 26 ms
23,988 KB
testcase_05 AC 26 ms
24,244 KB
testcase_06 AC 26 ms
24,040 KB
testcase_07 AC 26 ms
24,264 KB
testcase_08 AC 26 ms
24,044 KB
testcase_09 AC 27 ms
25,924 KB
testcase_10 AC 25 ms
21,940 KB
testcase_11 AC 25 ms
24,280 KB
testcase_12 AC 26 ms
23,912 KB
testcase_13 AC 26 ms
25,948 KB
testcase_14 AC 26 ms
26,184 KB
testcase_15 AC 26 ms
24,304 KB
testcase_16 AC 25 ms
23,852 KB
testcase_17 AC 25 ms
24,036 KB
testcase_18 AC 26 ms
24,372 KB
testcase_19 AC 26 ms
24,296 KB
testcase_20 AC 27 ms
26,172 KB
testcase_21 AC 24 ms
21,944 KB
testcase_22 AC 25 ms
24,364 KB
testcase_23 AC 26 ms
23,880 KB
testcase_24 AC 25 ms
23,856 KB
testcase_25 AC 24 ms
26,052 KB
testcase_26 AC 25 ms
24,416 KB
testcase_27 AC 25 ms
23,856 KB
testcase_28 AC 25 ms
24,044 KB
testcase_29 AC 25 ms
24,036 KB
testcase_30 AC 26 ms
23,904 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.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace YukiCoder
{
	public class QuestionNo499
	{
		public static void Main()
		{
			decimal InputNum = Convert.ToDecimal(Console.ReadLine());

			Stack<decimal> SevenNum = new Stack<decimal>();

			while(InputNum >= 7)
			{
				SevenNum.Push(InputNum % 7);
				InputNum = (InputNum - (InputNum % 7)) / 7;
			}
			SevenNum.Push(InputNum);

			
			for (int i = SevenNum.Count; i > 0; i--)
			{
				Console.Write(SevenNum.Pop());
			}
		}

	}
}
0