結果

問題 No.3708 Uncommon Time
コンテスト
ユーザー t98slider
提出日時 2026-09-11 21:30:07
言語 C++23
(gcc 15.3.0 + boost 1.92.0 + ACL)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 2,000 ms
+ 295µs
コード長 378 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,952 ms
コンパイル使用メモリ 332,608 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-09-11 21:57:09
合計ジャッジ時間 4,253 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 55
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    constexpr int r = 2000;
    vector<bool> tb(r + 1);
    for(int i = 2; i <= r; i++){
        if(tb[i]) continue;
        for(int j = 2 * i; j <= r; j += i) tb[j] = true;
    }
    int a, b;
    cin >> a >> b;
    cout << (!tb[100 * a + b] ? "Yes" : "No") << '\n';
}
0