/ SeriousOJ /

Record Detail

Runtime Error


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 768.0 KiB
#2 Accepted 1ms 584.0 KiB
#3 Accepted 1ms 584.0 KiB
#4 Accepted 1ms 540.0 KiB
#5 Accepted 2ms 540.0 KiB
#6 Accepted 1ms 556.0 KiB
#7 Runtime Error 2ms 540.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define nl "\n"
#define yes <<"YES\n"
#define no <<"NO\n"
#define sp " "
void solve()
{
  ll n ; cin>>n;
  //cout<<"heo\n";
  //cout<<n;
  for(int i=2;i<=n;i++){
    if(i%2==0){
        cout<<i;
        return;
    }
  }

}

int main()
{
       ios_base::sync_with_stdio(false);
       cin.tie(NULL);
    ll t=1; //cin>>t;
    for(ll i =0;i<t;i++) solve(); 
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1124 Even Number
Contest
LU IUJPC : Sylhet Division 2024
Language
C++17 (G++ 13.2.0)
Submit At
2024-12-09 04:47:42
Judged At
2024-12-09 04:47:44
Judged By
Score
80
Total Time
2ms
Peak Memory
768.0 KiB