結果

問題 No.525 二度寝の季節
ユーザー PE11PE11
提出日時 2017-07-04 17:13:11
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 227 bytes
コンパイル時間 877 ms
コンパイル使用メモリ 108,576 KB
実行使用メモリ 30,972 KB
最終ジャッジ日時 2024-04-15 15:57:12
合計ジャッジ時間 3,959 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 46 ms
26,964 KB
testcase_03 WA -
testcase_04 AC 46 ms
26,844 KB
testcase_05 AC 46 ms
29,064 KB
testcase_06 AC 51 ms
27,052 KB
testcase_07 AC 48 ms
26,716 KB
testcase_08 AC 47 ms
28,816 KB
testcase_09 AC 48 ms
27,092 KB
testcase_10 AC 47 ms
26,768 KB
testcase_11 AC 46 ms
26,900 KB
testcase_12 AC 48 ms
28,936 KB
testcase_13 AC 48 ms
27,100 KB
testcase_14 AC 48 ms
28,940 KB
testcase_15 AC 46 ms
26,928 KB
testcase_16 AC 48 ms
25,012 KB
testcase_17 AC 47 ms
28,684 KB
testcase_18 AC 46 ms
26,844 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 48 ms
29,068 KB
testcase_34 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

class Program
{
	static void Main()
	{
		Console.WriteLine(Convert.ToDateTime(Console.ReadLine()).AddMinutes(5).ToString("hh:mm"));


	}
}

0