結果

問題 No.826 連絡網
ユーザー ward1302ward1302
提出日時 2019-05-03 21:42:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 861 ms
コンパイル使用メモリ 77,032 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 05:02:11
合計ジャッジ時間 2,693 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 85 ms
5,376 KB
testcase_13 AC 25 ms
5,376 KB
testcase_14 AC 56 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 34 ms
5,376 KB
testcase_17 AC 25 ms
5,376 KB
testcase_18 AC 18 ms
5,376 KB
testcase_19 AC 103 ms
5,376 KB
testcase_20 AC 102 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 25 ms
5,376 KB
testcase_23 AC 35 ms
5,376 KB
testcase_24 AC 13 ms
5,376 KB
testcase_25 AC 131 ms
5,376 KB
testcase_26 AC 16 ms
5,376 KB
testcase_27 AC 88 ms
5,376 KB
testcase_28 AC 62 ms
5,376 KB
testcase_29 AC 24 ms
5,376 KB
testcase_30 AC 131 ms
5,376 KB
testcase_31 AC 31 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <map>
#include <utility>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
using namespace std;

int main() {
	int N, P; cin >> N >> P;
	int cnt=1;
	for(int i=N/2+1; i<=N; ++i){
	    bool flag=true;
	    bool is_p = i==P;
	    for(int h=2; h*h<=i; ++h){
	        if(i%h==0){
	            flag=false;
	            break;
	        }
	    }
	    if(flag) ++cnt;
	    if(is_p && flag){
	        cout << 1 << endl;
	        return 0;
	    }
	}
	cout << (P==1 ? 1 : N-cnt) << endl;
	return 0;
}
0