結果
| 問題 |
No.8010 Print inside /bin
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-07-01 17:51:27 |
| 言語 | Kuin (KuinC++ v.2021.9.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 400 bytes |
| コンパイル時間 | 2,655 ms |
| コンパイル使用メモリ | 147,320 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-09-16 11:13:39 |
| 合計ジャッジ時間 | 2,896 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
var ans: [][]char
const targetDir: []char :: "Z:/bin/"
func main()
do @ans :: #[0][]char
do file@forEach(@targetDir, false, callback, null)
do @ans.sort()
for i(0, ^@ans - 1)
do cui@print(@ans[i] ~ "\n")
end for
func callback(path: []char, isDir: bool, data: kuin@Class): bool
if(^path <> ^@targetDir)
do @ans :~ ["\{path.sub(^@targetDir, -1)}"]
end if
ret true
end func
end func