結果
問題 | No.9005 実行時間/使用メモリテスト(テスト用) |
ユーザー | fmhr |
提出日時 | 2015-05-19 00:56:31 |
言語 | Go (1.22.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 785 bytes |
コンパイル時間 | 10,988 ms |
コンパイル使用メモリ | 235,784 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-10 04:37:06 |
合計ジャッジ時間 | 17,512 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,001 ms
6,824 KB |
testcase_01 | AC | 1,002 ms
6,820 KB |
testcase_02 | AC | 1,002 ms
6,820 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
ソースコード
package main import ( "fmt" "time" ) func main() { var t int fmt.Scan(&t) // log.Print("started.") // チャネル finished := make(chan bool) go func() { // 1秒かかるコマンド // log.Print("sleep1 started.") time.Sleep(1 * time.Second) // log.Print("sleep1 finished.") finished <- true }() go func() { // 2秒かかるコマンド // log.Print("sleep2 started.") time.Sleep(1 * time.Second) // log.Print("sleep2 finished.") finished <- true }() go func() { // 3秒かかるコマンド // log.Print("sleep3 started.") time.Sleep(1 * time.Second) // log.Print("sleep3 finished.") finished <- true }() // 終わるまで待つ for i := 1; i <= t; i++ { <-finished } // log.Print("all finished.") fmt.Println("0") }