結果
問題 |
No.2087 基数の変換
|
ユーザー |
|
提出日時 | 2022-09-30 21:40:04 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 28 ms / 2,000 ms |
コード長 | 785 bytes |
コンパイル時間 | 925 ms |
コンパイル使用メモリ | 110,104 KB |
実行使用メモリ | 28,232 KB |
最終ジャッジ日時 | 2024-12-22 22:46:26 |
合計ジャッジ時間 | 3,752 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 51 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); static int[] LList(int n) => Enumerable.Repeat(0, n).Select(_ => int.Parse(ReadLine())).ToArray(); static void Main() { Solve(); } static void Solve() { var n = NN; var m = NN; if (m == 0) { WriteLine(0); return; } var res = new List<char>(); while (m > 0) { res.Add((char)(m % n + '0')); m /= n; } res.Reverse(); WriteLine(string.Concat(res)); } }