結果

問題 No.311 z in FizzBuzzString
コンテスト
ユーザー nCk_cv
提出日時 2015-12-06 20:16:01
言語 C++11
(gcc 15.3.0 + boost 1.92.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 1,500 ms
+ 506µs
コード長 279 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 744 ms
コンパイル使用メモリ 92,088 KB
実行使用メモリ 8,112 KB
最終ジャッジ日時 2026-09-03 12:24:05
合計ジャッジ時間 1,760 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
#include <vector>
#include <math.h>
#include <stdio.h>
#include <algorithm>
#include <string>
#include <map>
#include <queue>
#define ll long long

int main() {
  ll N;
  std::cin >> N;
  ll count = N / 3 * 2 + N / 5 * 2;
  std::cout << count << std::endl;
}
0