結果

問題 No.1903 Day1
ユーザー eagleeagle
提出日時 2022-05-28 13:37:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 1,000 ms
コード長 463 bytes
コンパイル時間 3,303 ms
コンパイル使用メモリ 73,808 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-09-20 21:45:53
合計ジャッジ時間 4,417 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,324 KB
testcase_01 AC 136 ms
41,392 KB
testcase_02 AC 138 ms
41,592 KB
testcase_03 AC 137 ms
41,664 KB
testcase_04 AC 135 ms
41,444 KB
testcase_05 AC 139 ms
41,396 KB
testcase_06 AC 134 ms
41,544 KB
testcase_07 AC 139 ms
41,608 KB
testcase_08 AC 141 ms
41,372 KB
testcase_09 AC 145 ms
41,156 KB
testcase_10 AC 138 ms
41,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int day = 0;
		int Q = N;
		while(Q > 0) {
			//日数をカウント
			day++;
			//7の倍数の日に
			if(day % 7 == 0) {
				//問題が6問ずつ追加される
				Q += 6;				
			}
			//正午に1問解く
			Q--;
		}
		System.out.println(day);
	}
}
0