結果

問題 No.87 Advent Calendar Problem
ユーザー リチウムリチウム
提出日時 2014-12-07 12:32:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 223 ms / 5,000 ms
コード長 426 bytes
コンパイル時間 3,100 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 43,924 KB
最終ジャッジ日時 2024-06-11 16:03:03
合計ジャッジ時間 9,290 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 206 ms
43,712 KB
testcase_01 AC 201 ms
43,664 KB
testcase_02 AC 197 ms
43,712 KB
testcase_03 AC 183 ms
43,432 KB
testcase_04 AC 173 ms
43,516 KB
testcase_05 AC 198 ms
43,628 KB
testcase_06 AC 210 ms
43,840 KB
testcase_07 AC 202 ms
43,840 KB
testcase_08 AC 200 ms
43,300 KB
testcase_09 AC 188 ms
43,780 KB
testcase_10 AC 213 ms
43,924 KB
testcase_11 AC 180 ms
43,436 KB
testcase_12 AC 186 ms
43,332 KB
testcase_13 AC 197 ms
43,452 KB
testcase_14 AC 184 ms
43,572 KB
testcase_15 AC 203 ms
43,532 KB
testcase_16 AC 112 ms
41,448 KB
testcase_17 AC 201 ms
43,656 KB
testcase_18 AC 191 ms
43,380 KB
testcase_19 AC 214 ms
43,876 KB
testcase_20 AC 215 ms
43,696 KB
testcase_21 AC 204 ms
43,828 KB
testcase_22 AC 171 ms
43,412 KB
testcase_23 AC 184 ms
43,488 KB
testcase_24 AC 178 ms
43,656 KB
testcase_25 AC 199 ms
43,800 KB
testcase_26 AC 223 ms
43,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.Math.*; 
public class ppp {
			
  public static void main(String[] args) {
	  Scanner sc=new Scanner(System.in);
	  long n=sc.nextLong()-2014;
	  long amari=n-(n/400)*400;
	  long ans=57*(n/400);
	  for(int i=2015;i<=2014+amari;i++){
		  Calendar c = new GregorianCalendar(i, 7-1, 23);
		  if(c.get(Calendar.DAY_OF_WEEK)==4)ans++;
	  }
	  System.out.println(ans);
  }}
0