結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー RyoRyo
提出日時 2021-09-02 23:35:22
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 822 bytes
コンパイル時間 1,939 ms
コンパイル使用メモリ 199,668 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-11-30 15:00:37
合計ジャッジ時間 36,486 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 2 ms
10,496 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2 ms
8,320 KB
testcase_08 AC 2 ms
10,496 KB
testcase_09 TLE -
testcase_10 AC 3 ms
10,496 KB
testcase_11 AC 2 ms
8,448 KB
testcase_12 AC 81 ms
10,496 KB
testcase_13 AC 42 ms
8,448 KB
testcase_14 AC 79 ms
10,496 KB
testcase_15 AC 137 ms
8,448 KB
testcase_16 AC 82 ms
10,496 KB
testcase_17 AC 77 ms
8,320 KB
testcase_18 AC 273 ms
10,496 KB
testcase_19 AC 465 ms
8,448 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 84 ms
10,496 KB
testcase_23 AC 485 ms
5,248 KB
testcase_24 AC 345 ms
5,248 KB
testcase_25 TLE -
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 5 ms
5,248 KB
testcase_29 AC 728 ms
5,248 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 273 ms
5,248 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < (n); ++i)
using namespace std;
using ll = long long;
using P = pair<int, int>;
struct fast_ios { fast_ios(){ cin.tie(nullptr), ios::sync_with_stdio(false), cout << fixed << setprecision(20); }; } fast_ios_;
const int INF = (int)1e9;
const ll INFL = (ll)1e18;
const int MOD = 1e9 + 7;
const double EPS = 1e-10;
int dx[]={0, 0, -1, 1};
int dy[]={1, -1, 0, 0};
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }

int main()
{
	int n, a, b, c;
	cin >> n >> a >> b >> c;

	int ans = 0;
	for (int i = 1; i <= n; i++)
	{
		if (i % a == 0 || i % b == 0 || i % c == 0)
			ans += 1;
	}
	cout << ans << endl;
	return 0;
}
0