結果

問題 No.652 E869120 and TimeZone
ユーザー iwkjoseciwkjosec
提出日時 2018-02-23 23:29:59
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 516 bytes
コンパイル時間 891 ms
コンパイル使用メモリ 107,408 KB
実行使用メモリ 26,764 KB
最終ジャッジ日時 2024-12-17 13:28:48
合計ジャッジ時間 2,807 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 26 ms
24,336 KB
testcase_02 AC 25 ms
26,244 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 25 ms
24,460 KB
testcase_06 AC 25 ms
24,332 KB
testcase_07 AC 25 ms
24,368 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 26 ms
26,636 KB
testcase_13 AC 25 ms
26,368 KB
testcase_14 AC 25 ms
26,616 KB
testcase_15 WA -
testcase_16 AC 24 ms
26,612 KB
testcase_17 AC 25 ms
26,488 KB
testcase_18 AC 24 ms
24,368 KB
testcase_19 WA -
testcase_20 AC 26 ms
26,764 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 24 ms
24,464 KB
testcase_25 AC 24 ms
26,088 KB
testcase_26 AC 24 ms
26,468 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 24 ms
26,480 KB
testcase_30 AC 25 ms
24,468 KB
testcase_31 AC 25 ms
26,360 KB
testcase_32 AC 24 ms
24,320 KB
testcase_33 AC 24 ms
24,244 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 static System.Console;

class Program
{
    static void Main()
    {
        var abs = ReadLine().Split();
        var a = int.Parse(abs[0]);
        var b = int.Parse(abs[1]);

        var n = new DateTimeOffset(2000, 10, 1, a, b, 0, new TimeSpan(+9, 0, 0));
        n = n.ToOffset(new TimeSpan((int)decimal.Parse(abs[2].Substring(3)), abs[2].Length == 7 ? int.Parse(abs[2].Substring(6)) * 6 : 0, 0));
        WriteLine($"{n:HH:mm}");
    }
}
0