結果

問題 No.87 Advent Calendar Problem
ユーザー mitsuomitsuo
提出日時 2016-05-07 19:26:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 1,352 bytes
コンパイル時間 1,939 ms
コンパイル使用メモリ 80,976 KB
実行使用メモリ 41,832 KB
最終ジャッジ日時 2024-10-05 10:22:49
合計ジャッジ時間 6,038 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,236 KB
testcase_01 AC 113 ms
41,200 KB
testcase_02 AC 101 ms
40,160 KB
testcase_03 AC 116 ms
41,212 KB
testcase_04 AC 118 ms
41,264 KB
testcase_05 AC 117 ms
41,692 KB
testcase_06 AC 107 ms
41,340 KB
testcase_07 AC 119 ms
41,564 KB
testcase_08 AC 117 ms
41,528 KB
testcase_09 AC 118 ms
41,260 KB
testcase_10 AC 105 ms
41,364 KB
testcase_11 AC 117 ms
40,216 KB
testcase_12 AC 102 ms
41,232 KB
testcase_13 AC 114 ms
41,652 KB
testcase_14 AC 114 ms
41,832 KB
testcase_15 AC 116 ms
41,808 KB
testcase_16 AC 114 ms
41,508 KB
testcase_17 AC 106 ms
41,416 KB
testcase_18 AC 106 ms
41,660 KB
testcase_19 AC 115 ms
41,588 KB
testcase_20 AC 106 ms
41,256 KB
testcase_21 AC 105 ms
41,332 KB
testcase_22 AC 121 ms
41,380 KB
testcase_23 AC 123 ms
41,352 KB
testcase_24 AC 116 ms
41,332 KB
testcase_25 AC 104 ms
41,476 KB
testcase_26 AC 121 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package jp.fedom.challange.yuki.l2.q87;

import java.math.BigInteger;
import java.time.DayOfWeek;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		List<String> input = new ArrayList<>();
		while (sc.hasNext()) {
			input.add(sc.nextLine());
		}

		System.out.println(solve(input));

		sc.close();
	}

	static DayOfWeek D = LocalDate.of((int) 2014, 7, 23).getDayOfWeek();

	public static long solve_slow(List<String> in) {
		long N = Integer.valueOf(in.get(0).split(" ")[0]);
		long count = 0;

		for (long i = 2015; i <= N; i++) {
			if (LocalDate.of((int) i, 7, 23).getDayOfWeek() == D) {
				count++;
			}
		}

		return count;
	}

	public static long solve(List<String> in) {
		BigInteger N = new BigInteger(in.get(0).split(" ")[0]);

		long count400 = 0;
		for (long i = 1; i <= 400; i++) {
			if (LocalDate.of((int) i, 7, 23).getDayOfWeek() == D) {
				count400++;
			}
		}

		long count = 0;
		long M = N.mod(BigInteger.valueOf(400L)).longValue();
		for (long i = 0; i <= M; i++) {
			if (LocalDate.of((int) i, 7, 23).getDayOfWeek() == D) {
				count++;
			}
		}

		return (count400 * N.divide(BigInteger.valueOf(400L)).longValue()) + count - 288L;
	}
}
0