結果
問題 | No.272 NOT回路 |
ユーザー |
![]() |
提出日時 | 2017-12-08 17:49:42 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 498 bytes |
コンパイル時間 | 2,186 ms |
コンパイル使用メモリ | 191,220 KB |
最終ジャッジ日時 | 2025-01-05 05:00:14 |
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 11 |
ソースコード
#include<bits/stdc++.h>typedef long long ll;typedef unsigned long long ull;using namespace std;#define pb push_backint dy[]={0, 0, 1, -1, 1, 1, -1, -1};int dx[]={1, -1, 0, 0, 1, -1, -1, 1};#define FOR(i,a,b) for (int i=(a);i<(b);i++)#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)#define REP(i,n) for (int i=0;i<(n);i++)#define RREP(i,n) for (int i=(n)-1;i>=0;i--)#define mp make_pair#define fi first#define sc secondbool x;int main(){cin >> x;cout << !x << endl;return 0;}