結果

問題 No.1903 Day1
ユーザー Maeda
提出日時 2025-03-17 10:49:01
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 201 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 24,704 KB
実行使用メモリ 7,324 KB
最終ジャッジ日時 2025-03-17 10:49:03
合計ジャッジ時間 1,332 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 8
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:4:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    4 |         scanf("%d",&n);
      |         ^~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
void main(void){
	int n;
	scanf("%d",&n);
	int dayCount = 0;
	while(n != 0){
		dayCount++;
		if(dayCount/7 > 0 && dayCount%7 == 0){
			n= n+6;
		}
		n--;
	}
	printf("%d",dayCount);
}
0