結果
| 問題 | No.3708 Uncommon Time |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-11 21:30:07 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 2,000 ms |
| + 295µs | |
| コード長 | 378 bytes |
| 記録 | |
| コンパイル時間 | 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 |
ソースコード
#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';
}