結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,156 KB
testcase_01 AC 102 ms
41,116 KB
testcase_02 AC 110 ms
41,200 KB
testcase_03 AC 117 ms
41,504 KB
testcase_04 AC 116 ms
41,292 KB
testcase_05 WA -
testcase_06 AC 99 ms
41,088 KB
testcase_07 AC 113 ms
41,544 KB
testcase_08 AC 115 ms
41,296 KB
testcase_09 AC 112 ms
41,432 KB
testcase_10 AC 106 ms
41,344 KB
testcase_11 AC 116 ms
41,408 KB
testcase_12 WA -
testcase_13 AC 115 ms
41,084 KB
testcase_14 AC 116 ms
40,848 KB
testcase_15 AC 107 ms
41,184 KB
testcase_16 AC 109 ms
41,444 KB
testcase_17 AC 118 ms
41,092 KB
testcase_18 WA -
testcase_19 AC 119 ms
40,912 KB
testcase_20 AC 116 ms
40,996 KB
testcase_21 AC 114 ms
41,548 KB
testcase_22 AC 114 ms
40,876 KB
testcase_23 AC 116 ms
41,148 KB
testcase_24 AC 113 ms
41,364 KB
testcase_25 AC 97 ms
41,392 KB
testcase_26 AC 116 ms
41,240 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+14;i++)if((5*(i %100)/4+21*(i/100)/4)%7==3)r++;
		System.out.println(r);
	}
}
0