結果

問題 No.87 Advent Calendar Problem
ユーザー kano_townkano_town
提出日時 2014-12-07 02:25:16
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 257 bytes
コンパイル時間 1,950 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-06-11 16:01:15
合計ジャッジ時間 6,091 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 119 ms
53,948 KB
testcase_04 AC 111 ms
52,924 KB
testcase_05 AC 112 ms
53,592 KB
testcase_06 AC 106 ms
53,008 KB
testcase_07 AC 120 ms
54,000 KB
testcase_08 AC 117 ms
52,920 KB
testcase_09 WA -
testcase_10 AC 117 ms
52,972 KB
testcase_11 AC 128 ms
53,984 KB
testcase_12 AC 129 ms
54,196 KB
testcase_13 AC 124 ms
53,900 KB
testcase_14 AC 101 ms
52,708 KB
testcase_15 AC 127 ms
54,200 KB
testcase_16 AC 116 ms
54,100 KB
testcase_17 AC 111 ms
52,964 KB
testcase_18 AC 115 ms
52,764 KB
testcase_19 AC 121 ms
54,348 KB
testcase_20 AC 121 ms
53,956 KB
testcase_21 AC 130 ms
54,408 KB
testcase_22 AC 118 ms
54,320 KB
testcase_23 AC 125 ms
54,100 KB
testcase_24 AC 109 ms
52,936 KB
testcase_25 AC 117 ms
53,884 KB
testcase_26 AC 119 ms
54,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
	public static void main(String[] args) {
		long n=new Scanner(System.in).nextLong()-2014;
		long i,r=57*(n/400);
		for(i=15;i<n%400+16;i++)if((5*(i%100)/4+21*(i/100)/4)%7==3)r++;
		System.out.println(r);
	}
}
0