結果

問題 No.296 n度寝
ユーザー nanophoto12nanophoto12
提出日時 2015-12-06 13:34:19
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 1,000 ms
コード長 558 bytes
コンパイル時間 734 ms
コンパイル使用メモリ 111,452 KB
実行使用メモリ 27,552 KB
最終ジャッジ日時 2024-07-06 22:33:01
合計ジャッジ時間 1,673 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,512 KB
testcase_01 AC 26 ms
27,392 KB
testcase_02 AC 27 ms
25,476 KB
testcase_03 AC 26 ms
25,380 KB
testcase_04 AC 27 ms
25,384 KB
testcase_05 AC 24 ms
27,520 KB
testcase_06 AC 22 ms
25,628 KB
testcase_07 AC 25 ms
25,504 KB
testcase_08 AC 24 ms
24,964 KB
testcase_09 AC 24 ms
25,340 KB
testcase_10 AC 23 ms
27,552 KB
testcase_11 AC 23 ms
23,344 KB
testcase_12 AC 24 ms
25,004 KB
testcase_13 AC 24 ms
25,512 KB
testcase_14 AC 26 ms
25,380 KB
testcase_15 AC 25 ms
27,132 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;

namespace No296
{
	class MainClass
	{
		public static void Main (string[] args)
		{
			IList<string> tokens = Console.ReadLine ().Split (' ');
			var f = tokens.Select(t=>(long)Convert.ToInt64(t)).ToArray();

			long current = f [1] * 60 + f [2];
			long add = (f [0]-1) * f [3];

			long toDay = (current + add) % (24L * 60L);
			long hour = toDay / 60L;
			long minute = toDay % 60L;

			Console.WriteLine (hour.ToString ());					
			Console.WriteLine (minute.ToString ());					
		}
	}
}
0