답안 #837438

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
837438 2023-08-25T10:52:12 Z LinkedArray Lutrija (COCI19_lutrija) C++17
35 / 70
1 ms 300 KB
#include <bits/stdc++.h>
using namespace std;

int isPrime(int num){
    int d = 2;
    while(d < num && num % d != 0){
        d++;
    }

    return (d == num);
}

int main() {
    int a, b, AP2, AM2, BP2, BM2, nr;

    cin >> a >> b;
    
    AP2 = isPrime(a + 2);
    AM2 = isPrime(a - 2);

    BP2 = isPrime(b + 2);
    BM2 = isPrime(b - 2);

    if(a != 2 && !AP2 && !AM2) {
        cout << "-1";
    } else if(b != 2 && !BP2 && !BM2) {
        cout << "-1";
    } else {
        nr = 1 + AM2 + BM2 + 2 * (AP2 + BP2);

        cout << nr << '\n';

        cout << (AM2 ? to_string(a) + ' ' : (AP2 ? to_string(a) + ' ' + to_string(a + 2) + ' ' : ""))
             << "2 "
             << (BM2 ? to_string(b) + ' ' : (BP2 ? to_string(b + 2) + ' ' + to_string(b) + ' ' : ""));
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 296 KB Output is correct
2 Correct 1 ms 296 KB Output is correct
3 Correct 1 ms 212 KB Output is correct
4 Correct 0 ms 212 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 232 KB Output is correct
3 Correct 0 ms 212 KB Output is correct
4 Correct 0 ms 296 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 1 ms 212 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 212 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 300 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 300 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -