結果

問題 No.652 E869120 and TimeZone
ユーザー iwkjoseciwkjosec
提出日時 2018-02-23 23:29:59
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 516 bytes
コンパイル時間 1,061 ms
コンパイル使用メモリ 109,844 KB
実行使用メモリ 28,668 KB
最終ジャッジ日時 2024-05-09 20:05:32
合計ジャッジ時間 3,009 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 27 ms
24,208 KB
testcase_02 AC 28 ms
26,244 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 28 ms
26,240 KB
testcase_06 AC 27 ms
24,324 KB
testcase_07 AC 28 ms
24,588 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 27 ms
26,248 KB
testcase_13 AC 27 ms
24,496 KB
testcase_14 AC 27 ms
24,340 KB
testcase_15 WA -
testcase_16 AC 26 ms
24,468 KB
testcase_17 AC 27 ms
24,208 KB
testcase_18 AC 27 ms
24,468 KB
testcase_19 WA -
testcase_20 AC 28 ms
26,252 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 26 ms
26,504 KB
testcase_25 AC 27 ms
22,064 KB
testcase_26 AC 26 ms
24,208 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 26 ms
26,356 KB
testcase_30 AC 27 ms
24,240 KB
testcase_31 AC 27 ms
24,208 KB
testcase_32 AC 25 ms
24,208 KB
testcase_33 AC 27 ms
24,308 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