結果

問題 No.499 7進数変換
ユーザー PE11PE11
提出日時 2017-10-27 17:50:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 1,000 ms
コード長 563 bytes
コンパイル時間 789 ms
コンパイル使用メモリ 111,632 KB
実行使用メモリ 28,348 KB
最終ジャッジ日時 2024-05-01 16:10:37
合計ジャッジ時間 2,616 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
23,912 KB
testcase_01 AC 26 ms
24,132 KB
testcase_02 AC 26 ms
24,112 KB
testcase_03 AC 25 ms
26,316 KB
testcase_04 AC 25 ms
26,308 KB
testcase_05 AC 25 ms
26,180 KB
testcase_06 AC 25 ms
23,788 KB
testcase_07 AC 26 ms
26,056 KB
testcase_08 AC 25 ms
24,292 KB
testcase_09 AC 25 ms
21,684 KB
testcase_10 AC 26 ms
26,048 KB
testcase_11 AC 26 ms
24,264 KB
testcase_12 AC 26 ms
24,140 KB
testcase_13 AC 26 ms
24,296 KB
testcase_14 AC 27 ms
24,112 KB
testcase_15 AC 26 ms
24,368 KB
testcase_16 AC 25 ms
24,116 KB
testcase_17 AC 25 ms
24,276 KB
testcase_18 AC 25 ms
24,000 KB
testcase_19 AC 26 ms
24,016 KB
testcase_20 AC 26 ms
26,184 KB
testcase_21 AC 27 ms
24,292 KB
testcase_22 AC 26 ms
28,348 KB
testcase_23 AC 25 ms
26,052 KB
testcase_24 AC 26 ms
23,920 KB
testcase_25 AC 25 ms
24,236 KB
testcase_26 AC 26 ms
24,040 KB
testcase_27 AC 25 ms
26,448 KB
testcase_28 AC 26 ms
26,072 KB
testcase_29 AC 24 ms
22,200 KB
testcase_30 AC 25 ms
26,080 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