結果

問題 No.525 二度寝の季節
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-06-13 01:56:29
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 1,000 ms
コード長 414 bytes
コンパイル時間 854 ms
コンパイル使用メモリ 111,384 KB
実行使用メモリ 26,264 KB
最終ジャッジ日時 2024-06-30 14:01:45
合計ジャッジ時間 2,663 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,948 KB
testcase_01 AC 25 ms
23,716 KB
testcase_02 AC 25 ms
24,224 KB
testcase_03 AC 24 ms
23,844 KB
testcase_04 AC 25 ms
23,912 KB
testcase_05 AC 25 ms
23,856 KB
testcase_06 AC 26 ms
25,880 KB
testcase_07 AC 25 ms
23,912 KB
testcase_08 AC 25 ms
23,912 KB
testcase_09 AC 26 ms
24,096 KB
testcase_10 AC 26 ms
26,264 KB
testcase_11 AC 26 ms
26,252 KB
testcase_12 AC 25 ms
23,908 KB
testcase_13 AC 25 ms
25,832 KB
testcase_14 AC 26 ms
25,864 KB
testcase_15 AC 25 ms
23,984 KB
testcase_16 AC 26 ms
24,100 KB
testcase_17 AC 26 ms
23,980 KB
testcase_18 AC 26 ms
25,820 KB
testcase_19 AC 26 ms
23,780 KB
testcase_20 AC 25 ms
23,856 KB
testcase_21 AC 25 ms
22,196 KB
testcase_22 AC 25 ms
23,920 KB
testcase_23 AC 26 ms
21,812 KB
testcase_24 AC 25 ms
22,192 KB
testcase_25 AC 25 ms
23,968 KB
testcase_26 AC 26 ms
25,948 KB
testcase_27 AC 25 ms
24,236 KB
testcase_28 AC 26 ms
24,080 KB
testcase_29 AC 25 ms
24,032 KB
testcase_30 AC 26 ms
26,128 KB
testcase_31 AC 26 ms
24,044 KB
testcase_32 AC 25 ms
24,100 KB
testcase_33 AC 25 ms
25,764 KB
testcase_34 AC 25 ms
23,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class No525{
    static void Main(){
        var h=Console.ReadLine().Split(':');
        int[] i={Int32.Parse(h[0]),Int32.Parse(h[1])};
        i[1]+=5;
        if(i[1]>59){
            i[1]-=60;
            if(i[0]==23)i[0]=0;
            else i[0]+=1;
        }
        var m=i[0]<10?$"0{i[0]}":$"{i[0]}";
        var s=i[1]<10?$"0{i[1]}":$"{i[1]}";
        Console.WriteLine($"{m}:{s}");
    }
}
0