結果
問題 | No.1291 小手調べ |
ユーザー | ikd |
提出日時 | 2020-11-20 21:55:40 |
言語 | F# (F# 4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 344 bytes |
コンパイル時間 | 11,779 ms |
コンパイル使用メモリ | 184,916 KB |
実行使用メモリ | 32,764 KB |
最終ジャッジ日時 | 2024-07-23 12:56:02 |
合計ジャッジ時間 | 12,771 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 1 WA * 3 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (238 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
// Learn more about F# at http://fsharp.org open System [<EntryPoint>] let main _ = let n = stdin.ReadLine() |> int for _ in 1 .. n do let d = stdin.ReadLine() |> int let suf = String.concat "" (Seq.init (d - 1) (fun _ -> "0")) "9" + suf |> printfn "%s" 0 // return an integer exit code