結果
問題 | No.414 衝動 |
ユーザー | hiyokko2 |
提出日時 | 2016-08-26 22:28:42 |
言語 | C++11 (gcc 13.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 457 bytes |
コンパイル時間 | 3,128 ms |
コンパイル使用メモリ | 156,644 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 13:53:46 |
合計ジャッジ時間 | 6,235 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<n;i++) #define int long long using namespace std; bool is_prime[1000001]; int M; signed main() { cin >> M; for (int i=2; i<=M/2+1; i++) is_prime[i] = true; for (int i=2; i<=M/2+1; i++) { if (is_prime[i]) { if (M % i == 0) { cout << i << " " << M / i << endl; return 0; } for (int j=i*2; j<=M/2+1; j+=i) { is_prime[j] = false; } } } cout << 1 << " " << M << endl; }