結果
| 問題 | No.316 もっと刺激的なFizzBuzzをください |
| コンテスト | |
| ユーザー |
sasa
|
| 提出日時 | 2025-03-07 11:25:31 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 263 bytes |
| コンパイル時間 | 438 ms |
| コンパイル使用メモリ | 27,648 KB |
| 実行使用メモリ | 18,880 KB |
| 最終ジャッジ日時 | 2025-03-07 11:25:37 |
| 合計ジャッジ時間 | 5,529 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 4 |
| other | TLE * 1 -- * 32 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:5:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
5 | scanf("%d%d%d%d",&num,&mult1,&mult2,&mult3);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>
int main(void){
int num,mult1,mult2,mult3;
scanf("%d%d%d%d",&num,&mult1,&mult2,&mult3);
int count = 0;
for(int i = 1;i <= num;i++){
if(num % mult1 == 0 || num % mult2 == 0 || num % mult3 == 0){
count++;
}
}
printf("%d",count);
}
sasa