結果
| 問題 | No.525 二度寝の季節 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2018-03-20 10:37:40 | 
| 言語 | Nim (2.2.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 1,000 ms | 
| コード長 | 128 bytes | 
| コンパイル時間 | 4,420 ms | 
| コンパイル使用メモリ | 77,596 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-06-30 04:55:31 | 
| 合計ジャッジ時間 | 5,296 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 33 | 
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'strutils' [UnusedImport]
ソースコード
import strutils, times
let
    t:string = readLine(stdin)
    time = parse(t, "HH:mm")
echo format(time + 5.minutes, "HH:mm")
            
            
            
        