結果
| 問題 | No.1942 Leading zero |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-02-22 03:27:47 |
| 言語 | Standard ML (MLton 20241230) |
| 結果 |
AC
|
| 実行時間 | 10 ms / 2,000 ms |
| + 624µs | |
| コード長 | 350 bytes |
| 記録 | |
| コンパイル時間 | 6,928 ms |
| コンパイル使用メモリ | 704,228 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-22 08:13:17 |
| 合計ジャッジ時間 | 7,478 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 1 |
ソースコード
fun readInt () =
valOf (TextIO.scanStream (Int.scan StringCvt.DEC) TextIO.stdIn)
fun printList [] = ignore ()
| printList (h :: tl) =
(
print (Int.toString h ^ "\n");
printList tl
)
val () =
let
val n = readInt ()
val s_s = List.tabulate (n, fn _ => readInt ())
in
printList s_s
end