結果

問題 No.9005 実行時間/使用メモリテスト(テスト用)
ユーザー fmhrfmhr
提出日時 2015-05-19 00:45:08
言語 Go
(1.22.1)
結果
TLE  
実行時間 -
コード長 519 bytes
コンパイル時間 10,485 ms
コンパイル使用メモリ 225,076 KB
実行使用メモリ 17,108 KB
最終ジャッジ日時 2024-04-18 11:25:19
合計ジャッジ時間 18,573 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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.")
}
0