結果
| 問題 | No.756 チャンパーノウン定数 (1) |
| コンテスト | |
| ユーザー |
chike_plus
|
| 提出日時 | 2019-03-28 16:57:51 |
| 言語 | F# (F# 10.0) |
| 結果 |
AC
|
| 実行時間 | 72 ms / 2,000 ms |
| コード長 | 313 bytes |
| 記録 | |
| コンパイル時間 | 7,433 ms |
| コンパイル使用メモリ | 213,664 KB |
| 実行使用メモリ | 31,184 KB |
| 最終ジャッジ日時 | 2026-04-30 15:00:47 |
| 合計ジャッジ時間 | 9,886 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (182 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
let ``No.756 チャンパーノウン定数 (1)``() =
let rec loop n i =
let len = (string n).Length
match (i <= len) with
| false -> loop (n+1) (i-len)
| true -> (string n).[i-1]
stdin.ReadLine()|>int
|> loop 1
|> stdout.WriteLine
()
``No.756 チャンパーノウン定数 (1)``()
chike_plus