結果

問題 No.525 二度寝の季節
ユーザー mkanenobu
提出日時 2018-03-20 10:34:41
言語 Nim
(2.2.0)
結果
WA  
実行時間 -
コード長 127 bytes
コンパイル時間 5,602 ms
コンパイル使用メモリ 78,240 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-30 04:55:21
合計ジャッジ時間 5,451 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 16 WA * 17
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'strutils' [UnusedImport]

ソースコード

diff #

import strutils, times

let
    t:string = readLine(stdin)
    time = parse(t, "hh:mm")

echo format(time + 5.minutes, "hh:mm")
0