結果
| 問題 |
No.311 z in FizzBuzzString
|
| コンテスト | |
| ユーザー |
sasa
|
| 提出日時 | 2025-03-05 13:33:07 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 276 bytes |
| コンパイル時間 | 542 ms |
| コンパイル使用メモリ | 27,648 KB |
| 実行使用メモリ | 8,608 KB |
| 最終ジャッジ日時 | 2025-03-05 13:33:17 |
| 合計ジャッジ時間 | 8,948 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 7 WA * 1 TLE * 3 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
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);
| ~~~~~^~~~~~~~~~~~
ソースコード
#include <stdio.h>
int main(){
// 入力された値
long val = 0;
scanf("%ld",&val);
// zの総数
long 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);
}
sasa