結果
問題 | No.9005 実行時間/使用メモリテスト(テスト用) |
ユーザー | fmhr |
提出日時 | 2015-05-19 00:45:08 |
言語 | Go (1.22.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 519 bytes |
コンパイル時間 | 10,651 ms |
コンパイル使用メモリ | 238,204 KB |
実行使用メモリ | 16,988 KB |
最終ジャッジ日時 | 2024-10-10 04:36:36 |
合計ジャッジ時間 | 19,070 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
ソースコード
package main import ( "log" "time" ) func main() { log.Print("started.") // 1秒かかるコマンド log.Print("sleep1 started.") time.Sleep(1 * time.Second) log.Print("sleep1 finished.") // 2秒かかるコマンド log.Print("sleep2 started.") time.Sleep(2 * time.Second) log.Print("sleep2 finished.") // 3秒かかるコマンド log.Print("sleep3 started.") time.Sleep(3 * time.Second) log.Print("sleep3 finished.") log.Print("all finished.") }