結果

問題 No.70 睡眠の重要性!
コンテスト
ユーザー nCk_cv
提出日時 2016-02-01 19:54:55
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
WA  
実行時間 -
コード長 592 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,714 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2026-04-10 01:38:11
合計ジャッジ時間 2,567 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 5 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import java.util.*;
import java.math.*;
import java.io.*;
 
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int sum = 0;
		for(int i = 0; i < N; i++) {
			String[] st = sc.next().split(":");
			String[] en = sc.next().split(":");
			int sth = Integer.parseInt(st[0]);
			int stm = Integer.parseInt(st[1]);
			int enh = Integer.parseInt(en[0]);
			int enm = Integer.parseInt(en[1]);
			if(enh < sth) enh += 24;
			int plus = (enh * 60 + enm ) - (sth * 60 + stm);
			sum += plus;
		}
		System.out.println(sum);
	}
}
0