結果
問題 | No.87 Advent Calendar Problem |
ユーザー | htensai |
提出日時 | 2020-05-13 13:56:41 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 670 bytes |
コンパイル時間 | 1,997 ms |
コンパイル使用メモリ | 79,252 KB |
実行使用メモリ | 41,548 KB |
最終ジャッジ日時 | 2024-09-14 15:34:46 |
合計ジャッジ時間 | 6,354 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
41,076 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 127 ms
40,940 KB |
testcase_04 | AC | 117 ms
40,312 KB |
testcase_05 | AC | 129 ms
41,024 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 128 ms
41,200 KB |
testcase_10 | AC | 126 ms
41,148 KB |
testcase_11 | WA | - |
testcase_12 | AC | 127 ms
41,252 KB |
testcase_13 | AC | 129 ms
41,244 KB |
testcase_14 | AC | 132 ms
41,060 KB |
testcase_15 | WA | - |
testcase_16 | AC | 128 ms
41,196 KB |
testcase_17 | WA | - |
testcase_18 | AC | 127 ms
40,832 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 126 ms
41,048 KB |
testcase_23 | AC | 130 ms
41,028 KB |
testcase_24 | AC | 129 ms
41,308 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); long n = sc.nextLong(); int[] counts = new int[401]; int mod = 365 % 7; for (int i = 0; i < 400; i++) { if (mod == 0) { counts[i]++; } int year = i + 2015; if (year % 4 != 0 && year % 100 == 0) { mod += 365; } else { mod += 366; } mod %= 7; } for (int i = 1; i < 400; i++) { counts[i] += counts[i - 1]; } long times = (n - 2015) / 400; int idx = (int)((n - 2015) % 400); long ans = times * counts[399] + counts[idx]; System.out.println(ans); } }