結果

問題 No.87 Advent Calendar Problem
ユーザー DemocoDemoco
提出日時 2015-05-04 19:52:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 654 bytes
コンパイル時間 1,936 ms
コンパイル使用メモリ 77,032 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-07-05 18:59:32
合計ジャッジ時間 6,212 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,176 KB
testcase_01 AC 120 ms
40,912 KB
testcase_02 AC 121 ms
40,944 KB
testcase_03 AC 110 ms
40,108 KB
testcase_04 AC 112 ms
39,788 KB
testcase_05 AC 112 ms
39,952 KB
testcase_06 AC 118 ms
40,652 KB
testcase_07 AC 111 ms
40,348 KB
testcase_08 AC 123 ms
41,000 KB
testcase_09 AC 112 ms
39,712 KB
testcase_10 AC 124 ms
41,256 KB
testcase_11 AC 109 ms
39,840 KB
testcase_12 AC 111 ms
39,904 KB
testcase_13 AC 111 ms
40,128 KB
testcase_14 AC 124 ms
41,424 KB
testcase_15 AC 122 ms
41,396 KB
testcase_16 AC 122 ms
41,088 KB
testcase_17 AC 112 ms
39,896 KB
testcase_18 AC 112 ms
39,892 KB
testcase_19 AC 111 ms
39,844 KB
testcase_20 AC 123 ms
41,200 KB
testcase_21 AC 122 ms
40,872 KB
testcase_22 AC 110 ms
40,132 KB
testcase_23 AC 120 ms
41,112 KB
testcase_24 AC 125 ms
41,272 KB
testcase_25 AC 126 ms
41,092 KB
testcase_26 AC 125 ms
41,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Yukico87 {
	public static void main(String[] args) {
		Scanner stdio = new Scanner(System.in);
		
		long n = stdio.nextLong();
		long y = 2015;
		long a = (n-y);
		long ans =0;
		long[] memo = new long[400];
		
		int wed = zeller(23,7,14,20);
		int j =20;
		int k =15;
	
		for(int i=0; i<400; i++) {
			if(wed == zeller(23, 7, k, j)) {
				ans++;
			}
			k++;
			if(k==100) {
				k=0;
				j++;
			}
			memo[i] = ans;
		}
		ans = ans*(a/400);
		a = a%400;
		ans = ans + memo[(int)a];
		System.out.println(ans);
	}
	public static int zeller(int q, int m, int k, int j) {
		return ((q+(((m+1)*26)/10)+k+(k/4)+(j/4) - 2*j)%7);
	}
}
0