Submission #2462043


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

int sosuu[]={
        11, 31, 41, 61, 71, 101, 131, 151, 181, 191, 211, 241, 251, 271, 281, 311, 331, 401, 421, 431, 461, 491, 521, 541, 571, 601, 631, 641, 661, 691, 701, 751, 761, 811, 821, 881, 911, 941, 971, 991, 1021, 1031, 1051, 1061, 1091, 1151, 1171, 1181, 1201, 1231, 1291, 1301, 1321, 1361, 1381
};

int main() {
    int n;
    cin>>n;
    for (int i = 0; i < n-1; ++i) {
        cout<<sosuu[i]<<" ";
    }
    cout<<sosuu[n-1]<<endl;
    return 0;
}

Submission Info

Submission Time
Task D - Five, Five Everywhere
User momentquiz
Language C++14 (GCC 5.4.1)
Score 400
Code Size 524 Byte
Status AC
Exec Time 1 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 3
AC × 5
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt
All in01.txt, in02.txt, sample_01.txt, sample_02.txt, sample_03.txt
Case Name Status Exec Time Memory
in01.txt AC 1 ms 256 KB
in02.txt AC 1 ms 256 KB
sample_01.txt AC 1 ms 256 KB
sample_02.txt AC 1 ms 256 KB
sample_03.txt AC 1 ms 256 KB