結果

問題 No.311 z in FizzBuzzString
ユーザー aaaaaaaa
提出日時 2019-03-11 05:08:16
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 264 bytes
コンパイル時間 641 ms
コンパイル使用メモリ 66,184 KB
最終ジャッジ日時 2025-01-06 22:03:30
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 7 TLE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

using LL = long long;

int main() {
  LL N;
  cin >> N;

  LL ans = 0L;
  for (LL i = 1L; i <= N; ++i) {
    if (i % 3 == 0) {
      ans += 2;
    }
    if(i % 5 == 0) {
      ans += 2;
    }
  }
  cout << ans << endl;
}
0