結果

問題 No.652 E869120 and TimeZone
ユーザー iwkjoseciwkjosec
提出日時 2018-02-27 15:28:48
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 329 bytes
コンパイル時間 948 ms
コンパイル使用メモリ 110,540 KB
実行使用メモリ 26,464 KB
最終ジャッジ日時 2024-12-17 13:51:19
合計ジャッジ時間 3,000 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 24 ms
24,296 KB
testcase_03 RE -
testcase_04 AC 25 ms
26,464 KB
testcase_05 AC 24 ms
24,184 KB
testcase_06 AC 25 ms
26,464 KB
testcase_07 AC 24 ms
26,092 KB
testcase_08 RE -
testcase_09 AC 24 ms
26,216 KB
testcase_10 AC 25 ms
26,216 KB
testcase_11 AC 24 ms
24,368 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 24 ms
24,308 KB
testcase_16 AC 26 ms
24,180 KB
testcase_17 AC 23 ms
24,052 KB
testcase_18 AC 24 ms
21,940 KB
testcase_19 RE -
testcase_20 AC 23 ms
24,444 KB
testcase_21 AC 26 ms
26,348 KB
testcase_22 AC 27 ms
26,340 KB
testcase_23 AC 25 ms
24,308 KB
testcase_24 AC 26 ms
24,316 KB
testcase_25 RE -
testcase_26 AC 26 ms
26,212 KB
testcase_27 RE -
testcase_28 AC 26 ms
24,496 KB
testcase_29 AC 25 ms
26,228 KB
testcase_30 AC 24 ms
24,184 KB
testcase_31 AC 25 ms
21,936 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 AC 24 ms
22,328 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 static System.Console;

class Program
{
    static void Main()
    {
        var abs = ReadLine().Split();
        WriteLine($"{new DateTime(1, 1, 1, int.Parse(abs[0]), int.Parse(abs[1]), 0).AddHours(double.Parse(abs[2].Substring(3)) - 9):HH:mm}");
    }
}
0