結果

問題 No.546 オンリー・ワン
ユーザー noiunoiu
提出日時 2017-07-27 22:36:42
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 392 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 58,360 KB
実行使用メモリ 10,020 KB
最終ジャッジ日時 2024-10-10 02:14:18
合計ジャッジ時間 3,962 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

int main() {
    int N, L, H;
    cin >> N;
    cin >> L;
    cin >> H;

    vector<int> v(N);
    for(int i = 0; i < N; i++) cin >> v[i];

    int count = 0;
    for(int i = L; i <= H; i++) {
        int x = 0;
        for(auto &c : v) {
            if(!(i%c)) x++;
        }
        if (x == 1) count++;
    }
    cout << count;
}
0