結果

問題 No.1236 長針と短針
ユーザー ks2mks2m
提出日時 2020-09-25 21:30:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 2,128 ms
コンパイル使用メモリ 74,628 KB
実行使用メモリ 37,188 KB
最終ジャッジ日時 2024-06-28 06:08:50
合計ジャッジ時間 4,311 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,940 KB
testcase_01 AC 52 ms
36,868 KB
testcase_02 AC 53 ms
36,904 KB
testcase_03 AC 54 ms
37,020 KB
testcase_04 AC 51 ms
36,576 KB
testcase_05 AC 53 ms
36,696 KB
testcase_06 AC 52 ms
36,928 KB
testcase_07 AC 53 ms
37,000 KB
testcase_08 AC 54 ms
36,948 KB
testcase_09 AC 51 ms
36,928 KB
testcase_10 AC 53 ms
36,944 KB
testcase_11 AC 53 ms
37,188 KB
testcase_12 AC 53 ms
37,132 KB
testcase_13 AC 53 ms
36,576 KB
testcase_14 AC 51 ms
36,984 KB
testcase_15 AC 52 ms
37,116 KB
testcase_16 AC 51 ms
36,592 KB
testcase_17 AC 53 ms
36,928 KB
testcase_18 AC 53 ms
36,800 KB
testcase_19 AC 52 ms
36,568 KB
testcase_20 AC 52 ms
37,112 KB
testcase_21 AC 52 ms
36,920 KB
testcase_22 AC 55 ms
36,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int a = Integer.parseInt(sa[0]);
		int b = Integer.parseInt(sa[1]);
		br.close();

		a %= 12;
		int x = 60 * 60 * 12;
		int[] y = new int[12];
		for (int i = 0; i < 12; i++) {
			y[i] = x * i / 11;
		}

		int ans = Integer.MAX_VALUE;
		int t = 3600 * a + 60 * b;
		for (int i = 0; i < 12; i++) {
			int d = y[i] - t;
			if (d >= 0) {
				ans = Math.min(ans, d);
			}
		}
		System.out.println(ans);
	}
}
0