結果

問題 No.311 z in FizzBuzzString
ユーザー sasa
提出日時 2025-03-05 13:32:43
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 280 bytes
コンパイル時間 645 ms
コンパイル使用メモリ 27,904 KB
実行使用メモリ 8,608 KB
最終ジャッジ日時 2025-03-05 13:32:45
合計ジャッジ時間 1,506 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 11
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:18: warning: format ‘%ld’ expects argument of type ‘long int*’, but argument 2 has type ‘double*’ [-Wformat=]
    6 |         scanf("%ld",&val);
      |                ~~^  ~~~~
      |                  |  |
      |                  |  double*
      |                  long int*
      |                %le
main.cpp:16:19: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 2 has type ‘double’ [-Wformat=]
   16 |         printf("%ld",ans);
      |                 ~~^  ~~~
      |                   |  |
      |                   |  double
      |                   long int
      |                 %f
main.cpp:6:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%ld",&val);
      |         ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(){
	// 入力された値
	double val = 0;
	scanf("%ld",&val);
	// zの総数
	double ans = 0;
	for(int i = 1;i <= val;i++){
		if(i % 3 == 0 && i % 5 == 0){
			ans += 4;
		}else if(i % 3 == 0 || i % 5 == 0){
			ans += 2;
		}
	}
	printf("%ld",ans);
}
0