結果
問題 |
No.756 チャンパーノウン定数 (1)
|
ユーザー |
|
提出日時 | 2018-12-06 12:08:46 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 24 ms / 2,000 ms |
コード長 | 437 bytes |
コンパイル時間 | 856 ms |
コンパイル使用メモリ | 111,576 KB |
実行使用メモリ | 17,792 KB |
最終ジャッジ日時 | 2024-09-14 02:24:01 |
合計ジャッジ時間 | 2,292 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; class C{ static void Main(){ long starting=1; int bse=10; for(;;){ string s=Console.ReadLine(); if(s==null)break; long n=long.Parse(s); n+=starting-2; long digits=1; long expbase=1; long x; for(;(x=digits*expbase*(bse-1))<=n;n-=x){ digits++; expbase*=bse; } long num=expbase+n/digits; long d=digits-1-n%digits; for(;d-->0;num/=bse); Console.WriteLine(num%bse); } } }