結果

問題 No.597 concat
ユーザー taktak
提出日時 2018-03-23 20:33:07
言語 F#
(F# 4.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 4,464 ms
コンパイル使用メモリ 161,160 KB
実行使用メモリ 24,928 KB
最終ジャッジ日時 2023-09-07 02:52:04
合計ジャッジ時間 6,708 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
22,644 KB
testcase_01 AC 79 ms
24,928 KB
testcase_02 AC 79 ms
22,664 KB
testcase_03 AC 80 ms
22,768 KB
testcase_04 AC 78 ms
20,624 KB
testcase_05 AC 79 ms
22,652 KB
testcase_06 AC 79 ms
24,632 KB
testcase_07 AC 78 ms
22,684 KB
testcase_08 AC 77 ms
22,668 KB
testcase_09 AC 77 ms
22,644 KB
testcase_10 AC 79 ms
24,752 KB
testcase_11 AC 79 ms
22,900 KB
testcase_12 AC 78 ms
22,584 KB
testcase_13 AC 79 ms
22,796 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

open System
let read() = Console.ReadLine()

let N = read() |> int

Array.init N (fun _ -> read())
|> Array.iter (fun s -> printf "%s" s)

printfn ""        
0