結果

問題 No.87 Advent Calendar Problem
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-09 14:18:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,041 bytes
コンパイル時間 3,465 ms
コンパイル使用メモリ 75,580 KB
実行使用メモリ 43,796 KB
最終ジャッジ日時 2024-07-04 13:24:05
合計ジャッジ時間 9,989 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 202 ms
43,160 KB
testcase_01 AC 200 ms
43,340 KB
testcase_02 WA -
testcase_03 AC 208 ms
43,280 KB
testcase_04 AC 199 ms
43,020 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 209 ms
43,408 KB
testcase_08 WA -
testcase_09 AC 212 ms
43,256 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 211 ms
43,196 KB
testcase_13 WA -
testcase_14 AC 205 ms
43,092 KB
testcase_15 WA -
testcase_16 AC 208 ms
43,120 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 204 ms
43,012 KB
testcase_21 WA -
testcase_22 AC 194 ms
43,072 KB
testcase_23 AC 201 ms
43,072 KB
testcase_24 AC 192 ms
43,240 KB
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.87 Advent Calendar Problem

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No87 {
    
    static final Scanner in = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        long n = in.nextLong()-2014;
        Calendar c = Calendar.getInstance();
        c.set(2014,7,23);
        int w = c.get(Calendar.DAY_OF_WEEK);
        long cnt = n/400*57;
        n %= 400;
        
        for (int i=0; i<=n; i++) {
            c.add(Calendar.DAY_OF_YEAR,1);
            if (w == c.get(Calendar.DAY_OF_WEEK)) cnt++;
        }
        out.println(cnt);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
        out.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0