結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー Shawn stayCShawn stayC
提出日時 2020-07-19 17:24:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 312 bytes
コンパイル時間 1,950 ms
コンパイル使用メモリ 172,876 KB
実行使用メモリ 544,512 KB
最終ジャッジ日時 2024-12-16 06:00:14
合計ジャッジ時間 25,729 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 428 ms
184,192 KB
testcase_02 TLE -
testcase_03 AC 2 ms
393,892 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2 ms
261,284 KB
testcase_08 AC 2 ms
13,640 KB
testcase_09 TLE -
testcase_10 AC 5 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 16 ms
6,820 KB
testcase_13 AC 9 ms
5,248 KB
testcase_14 AC 16 ms
5,248 KB
testcase_15 AC 26 ms
5,248 KB
testcase_16 AC 63 ms
16,384 KB
testcase_17 AC 18 ms
5,248 KB
testcase_18 AC 54 ms
5,248 KB
testcase_19 AC 102 ms
10,496 KB
testcase_20 AC 196 ms
9,728 KB
testcase_21 AC 494 ms
12,160 KB
testcase_22 AC 15 ms
6,820 KB
testcase_23 AC 83 ms
6,820 KB
testcase_24 AC 59 ms
6,816 KB
testcase_25 AC 524 ms
19,584 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 4 ms
6,820 KB
testcase_29 AC 123 ms
5,632 KB
testcase_30 AC 683 ms
34,944 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 698 ms
11,648 KB
testcase_35 AC 796 ms
27,776 KB
testcase_36 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0; i<(n); i++)
typedef long long ll;

int main(){
	ll n,a,b,c; cin>>n>>a>>b>>c;
	set<ll> st; ll x;
	for(ll i=1; i<=n; i++){
		if(a*i<=n) st.insert(a*i);
		if(b*i<=n) st.insert(b*i);
		if(c*i<=n) st.insert(c*i);
	}
	cout<<st.size()<<endl;
}
0