Skip to content

Commit

Permalink
LibreOJ: 4002
Browse files Browse the repository at this point in the history
 「NOIP2023」三值逻辑
  • Loading branch information
Macesuted committed Jan 7, 2024
1 parent f7393a1 commit 6cdf76b
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions LibreOJ/4002.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/**
* @file 4002.cpp
* @author Macesuted (i@macesuted.moe)
* @date 2023-12-24
*
* @copyright Copyright (c) 2023
*
*/

#include <bits/stdc++.h>
using namespace std;

#ifndef LOCAL
#define endl '\n'
#endif

bool mem1;

void solve(void) { return; }

bool mem2;

int main() {
ios::sync_with_stdio(false), cin.tie(nullptr);
#ifdef LOCAL
cerr << "Memory Cost: " << abs(&mem1 - &mem2) / 1024. / 1024. << "MB" << endl;
#endif

int _ = 1;
while (_--) solve();

#ifdef LOCAL
cerr << "Time Cost: " << clock() * 1000. / CLOCKS_PER_SEC << "MS" << endl;
#endif
return 0;
}

0 comments on commit 6cdf76b

Please sign in to comment.