結果
| 問題 | No.8010 Print inside /bin |
| コンテスト | |
| ユーザー |
ID 21712
|
| 提出日時 | 2025-02-28 18:51:42 |
| 言語 | Go (1.26.1) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,500 ms |
| コード長 | 180 bytes |
| 記録 | |
| コンパイル時間 | 9,808 ms |
| コンパイル使用メモリ | 292,444 KB |
| 実行使用メモリ | 7,212 KB |
| 最終ジャッジ日時 | 2026-07-06 11:16:55 |
| 合計ジャッジ時間 | 11,796 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 |
ソースコード
package main
import(."fmt";."path/filepath";"strings")
func main(){
s,_:=Glob("/bin/*")
for _,p:=range s{
x := Base(p)
if !strings.HasPrefix(x,".") {
Println(x)
}
}
}
ID 21712