結果

問題 No.87 Advent Calendar Problem
ユーザー kano_townkano_town
提出日時 2014-12-07 01:55:24
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 359 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 73,816 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-06-11 16:00:33
合計ジャッジ時間 5,812 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 118 ms
41,352 KB
testcase_04 AC 107 ms
41,116 KB
testcase_05 AC 115 ms
41,664 KB
testcase_06 AC 117 ms
40,044 KB
testcase_07 AC 121 ms
41,304 KB
testcase_08 AC 108 ms
40,156 KB
testcase_09 WA -
testcase_10 AC 119 ms
41,356 KB
testcase_11 AC 117 ms
41,536 KB
testcase_12 AC 122 ms
41,344 KB
testcase_13 AC 115 ms
41,212 KB
testcase_14 AC 103 ms
41,064 KB
testcase_15 AC 115 ms
41,092 KB
testcase_16 AC 116 ms
41,176 KB
testcase_17 AC 115 ms
39,948 KB
testcase_18 AC 123 ms
41,536 KB
testcase_19 AC 117 ms
41,128 KB
testcase_20 AC 119 ms
41,688 KB
testcase_21 AC 120 ms
41,304 KB
testcase_22 AC 119 ms
41,172 KB
testcase_23 AC 130 ms
41,308 KB
testcase_24 AC 130 ms
41,188 KB
testcase_25 AC 118 ms
40,088 KB
testcase_26 AC 116 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong() - 2014;
		long res = 57 * (N / 400);
		// Zeller
		for (long i = 2015; i <= N % 400 + 2015; i++) if ((39 + 5 * (i % 100) / 4 + 21 * (i / 100) / 4) % 7 == 0) res++;
		System.out.println(res);
	}
}
0