/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 536.0 KiB
#2 Wrong Answer 2ms 320.0 KiB
#3 Wrong Answer 2ms 328.0 KiB

Code

#include <iostream>
using namespace std;

bool prm(long long n) {
    if (n <= 1)
        return false;
    for (long long i = 2; i * i <= n; ++i) {
        if (n % i == 0)
            return false;
    }
    return true;
}

int main() {
    int t;
    cin >> t;
    while (t--) {
        long long n;
        cin >> n;

        if (prm(n)) {
            cout << 1 << endl; 
        } else {
            cout << 2 << endl; 
        }
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1052 Yet Another Array Partition
Contest
Brain Booster #3
Language
C++20 (G++ 13.2.0)
Submit At
2024-05-06 15:43:10
Judged At
2024-11-11 03:33:57
Judged By
Score
5
Total Time
2ms
Peak Memory
536.0 KiB