結果
問題 |
No.311 z in FizzBuzzString
|
ユーザー |
![]() |
提出日時 | 2025-03-05 13:31:40 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 272 bytes |
コンパイル時間 | 469 ms |
コンパイル使用メモリ | 27,520 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2025-03-05 13:31:50 |
合計ジャッジ時間 | 9,645 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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("%d",&val); | ~~~~~^~~~~~~~~~~
ソースコード
#include <stdio.h> int main(){ // 入力された値 int val = 0; scanf("%d",&val); // zの総数 int 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("%d",ans); }