結果

問題 No.87 Advent Calendar Problem
ユーザー kano_townkano_town
提出日時 2014-12-07 01:29:34
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 468 bytes
コンパイル時間 3,325 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-06-11 16:00:22
合計ジャッジ時間 6,671 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 107 ms
40,988 KB
testcase_04 AC 115 ms
41,020 KB
testcase_05 AC 116 ms
41,356 KB
testcase_06 AC 116 ms
41,132 KB
testcase_07 AC 114 ms
41,036 KB
testcase_08 AC 116 ms
41,176 KB
testcase_09 WA -
testcase_10 AC 98 ms
39,952 KB
testcase_11 AC 110 ms
41,224 KB
testcase_12 AC 114 ms
41,300 KB
testcase_13 AC 103 ms
39,956 KB
testcase_14 AC 101 ms
41,320 KB
testcase_15 AC 118 ms
39,888 KB
testcase_16 AC 120 ms
41,192 KB
testcase_17 AC 112 ms
41,344 KB
testcase_18 AC 102 ms
41,260 KB
testcase_19 AC 112 ms
41,296 KB
testcase_20 AC 112 ms
41,292 KB
testcase_21 AC 103 ms
41,232 KB
testcase_22 AC 112 ms
41,188 KB
testcase_23 AC 115 ms
41,568 KB
testcase_24 AC 113 ms
41,408 KB
testcase_25 AC 104 ms
41,316 KB
testcase_26 AC 113 ms
41,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder87 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong() - 2014;
		long res = 57 * (N / 400);
		N = N % 400;
		// ツェラーの公式
		for (long i = 2015; i <= N + 2015; i++)
			if ((23 + (int) (26 * 8 / 10) + (i % 100) + (long) ((i % 100) / 4) + 5 * (long) (i / 100) + (long) (i / 100) / 4) % 7 == 4)
				res++;
		System.out.println(res);
	}
}
0