結果
問題 |
No.311 z in FizzBuzzString
|
ユーザー |
![]() |
提出日時 | 2025-03-05 13:33:31 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 277 bytes |
コンパイル時間 | 477 ms |
コンパイル使用メモリ | 27,520 KB |
実行使用メモリ | 17,344 KB |
最終ジャッジ日時 | 2025-03-05 13:33:35 |
合計ジャッジ時間 | 3,809 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 7 TLE * 1 -- * 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(long 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); }