結果

問題 No.652 E869120 and TimeZone
ユーザー iwkjoseciwkjosec
提出日時 2018-02-23 23:35:01
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 981 ms
コンパイル使用メモリ 111,292 KB
実行使用メモリ 29,652 KB
最終ジャッジ日時 2024-05-09 20:06:40
合計ジャッジ時間 2,800 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 28 ms
25,420 KB
testcase_02 AC 26 ms
23,732 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 27 ms
27,104 KB
testcase_06 AC 27 ms
25,416 KB
testcase_07 AC 26 ms
25,440 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 26 ms
27,228 KB
testcase_13 AC 26 ms
25,032 KB
testcase_14 AC 26 ms
23,476 KB
testcase_15 WA -
testcase_16 AC 27 ms
27,220 KB
testcase_17 AC 27 ms
27,232 KB
testcase_18 AC 28 ms
25,392 KB
testcase_19 WA -
testcase_20 AC 27 ms
25,168 KB
testcase_21 AC 28 ms
25,288 KB
testcase_22 AC 27 ms
25,184 KB
testcase_23 WA -
testcase_24 AC 27 ms
27,480 KB
testcase_25 AC 26 ms
25,264 KB
testcase_26 AC 26 ms
25,292 KB
testcase_27 WA -
testcase_28 AC 27 ms
25,264 KB
testcase_29 AC 27 ms
27,416 KB
testcase_30 AC 26 ms
23,348 KB
testcase_31 AC 26 ms
27,292 KB
testcase_32 AC 26 ms
25,164 KB
testcase_33 AC 26 ms
25,288 KB
testcase_34 AC 27 ms
25,292 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();
        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].Contains('.') ? int.Parse(abs[2].Last() + "") * 6 : 0, 0));
        WriteLine($"{n:HH:mm}");
    }
}
0