/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 1ms 392.0 KiB
#2 Wrong Answer 1ms 336.0 KiB

Code

// #include <iostream>
// #include <string>
// #include <vector>
// #include <set>
// #include <unordered_set>
// #include <map>
// #include <list>
// #include <algorithm>
// #include <numeric>
// #include <cmath>
#include <bits/stdc++.h>
#define ll long long
#define yes cout << "YES\n"
#define no cout << "NO\n"
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define SORT(v) sort(v.begin(), v.end())
#define REVERSE(v) reverse(v.begin(), v.end())
#define REV_SORT(v) sort((v).begin(), (v).end(), greater<>())
#define vint vector<int>
#define vll vector<ll>
#define vch vector<char>
#define vstr vector<string>
#define u_set unordered_set
#define pii pair<int, int>
#define pll pair<ll, ll>
#define pb push_back
#define pf push_front
#define mp make_pair
#define fi first
#define se second
#define fast                     \
    ios::sync_with_stdio(false); \
    cin.tie(0);                  \
    cout.tie(0);
using namespace std;

void debug()
{
#ifndef ONLINE_JUDGE
    freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
#endif // ONLINE_JUDGE
}

void solve();
int32_t main()
{
    fast;
    debug();
    int TestCase = 1;
    cin >> TestCase;
    while (TestCase--)
        solve();
    return 0;
}

void solve()
{
    cout << "I love programming\n";
}

Information

Submit By
Type
Submission
Problem
P1018 Show your dedication
Contest
Brain booster - 1
Language
C++20 (G++ 13.2.0)
Submit At
2023-12-31 13:17:09
Judged At
2024-10-03 14:06:42
Judged By
Score
0
Total Time
1ms
Peak Memory
392.0 KiB