/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 1ms 348.0 KiB
#2 Wrong Answer 1ms 532.0 KiB

Code

#include <bits/stdc++.h>
#include <algorithm>
using namespace std;
#define IOS  ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
#define endl "\n"
#define int long long

const int M = 3e5 + 5, MOD = 998244353;
int32_t main()
{
    int x;
    cin>>x;
    int total = 0;
    for(int i = 1;i <= x;i++)
    {
        if(x % i == 0)
        {
            total++;
        }
    }
    cout<<total;
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1037 Generous CR
Contest
Brain booster #2
Language
C++17 (G++ 13.2.0)
Submit At
2024-03-06 14:25:17
Judged At
2024-11-11 03:41:59
Judged By
Score
0
Total Time
1ms
Peak Memory
532.0 KiB