結果

問題 No.546 オンリー・ワン
ユーザー RIGIHRIGIH
提出日時 2017-07-18 15:38:08
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 623 bytes
コンパイル時間 585 ms
コンパイル使用メモリ 64,624 KB
実行使用メモリ 13,636 KB
最終ジャッジ日時 2024-10-08 10:52:01
合計ジャッジ時間 3,995 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,636 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <cstring>
#include <math.h>
#include <algorithm>
#include <vector>
#define rep(i,n) for(int i=0;i<n;i++)
#define FOR(i,a,b) for(int i=a;i<b;i++)
#define ll long long
#define LL long long
#define mass 1000000007
using namespace std;

int main(){
	int n,l,h;
	cin>>n>>l>>h;
	int *c;
	c=new int[n];
	rep(i,n){
		cin>>c[i];
	}
	int count=0;
	FOR(i,l,h+1){
		int ch=0;
		rep(j,n){
			if(i%c[j]==0){
				if(ch==0){
					ch++;
				}
				else if(ch==1){
					ch++;
					break;
				}
			}
		}
		if(ch==1){
			count++;
		}
	}
	cout<<count<<endl;


	delete []c;



	
	return 0;
	

}
	
	
0