結果
問題 | No.272 NOT回路 |
ユーザー | naimonon77 |
提出日時 | 2016-05-30 19:42:15 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 2,048 bytes |
コンパイル時間 | 1,885 ms |
コンパイル使用メモリ | 163,576 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-07 18:50:14 |
合計ジャッジ時間 | 2,268 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
コンパイルメッセージ
main.cpp: In function ‘void reader(int&)’: main.cpp:16:26: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 16 | void reader(int &a){scanf("%d",&a);} | ~~~~~^~~~~~~~~ main.cpp: In function ‘void reader(double&)’: main.cpp:17:29: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 17 | void reader(double &a){scanf("%lf",&a);} | ~~~~~^~~~~~~~~~ main.cpp: In function ‘void reader(char*)’: main.cpp:18:28: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 18 | void reader(char a[]){scanf("%s",a);} | ~~~~~^~~~~~~~ main.cpp: In function ‘void reader(long long int&)’: main.cpp:19:25: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 19 | void reader(ll &a){scanf("%lld",&a);} | ~~~~~^~~~~~~~~~~ main.cpp: In function ‘void reader(long long unsigned int&)’: main.cpp:20:26: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 20 | void reader(ull &a){scanf("%llu",&a);} | ~~~~~^~~~~~~~~~~ main.cpp: In function ‘int main()’: main.cpp:49:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 49 | scanf("%d",&N); | ~~~~~^~~~~~~~~
ソースコード
#include "bits/stdc++.h" #include <random> #define REP(i,a,b) for(i=a;i<b;++i) #define rep(i,n) REP(i,0,n) #define ll long long #define ull unsigned ll typedef long double ld; #define SQR(X) ( (X)*(X) ) #define CUBE(X) ( (X)*(X)*(X) ) #define ALL(a) (a).begin(),(a).end() #define ifnot(a) if(not a) #define dump(x) cerr << #x << " = " << (x) << endl using namespace std; void reader(int &a){scanf("%d",&a);} void reader(double &a){scanf("%lf",&a);} void reader(char a[]){scanf("%s",a);} void reader(ll &a){scanf("%lld",&a);} void reader(ull &a){scanf("%llu",&a);} // void reader(string& a){cin >> a;}; template<class T,class U> void reader(T& t,U& u){reader(t); reader(u);} template<class T,class U,class V> void reader(T& t,U& u,V& v){reader(t); reader(u); reader(v);} void writer(int a,char c) {printf("%d",a); putchar(c);} void writer(ll a,char c) {printf("%lld",a); putchar(c);} void writer(double a,char c) {printf("%.20lf",a); putchar(c);} void writer(char a[]) {printf("%s",a);}; void writer(char a[],char c) {printf("%s",a);putchar(c);}; void writer(char a,char c) {putchar(a); putchar(c);}; template<class T>void writerLn(T t){writer(t,'\n');} template<class T,class U>void writerLn(T t,U u){writer(t,' ');writer(u,'\n');} template<class T,class U,class V> void writerLn(T t,U u,V v){writer(t,' ');writer(u,' ');writer(v,'\n');} template<class T> void writerArr(T x[], int n){int i;if(!n){putchar('\n');return;}rep(i,n-1) writer(x[i],' ');writer(x[n-1],'\n');} template<class T> void writerVec(vector<T> x){int n=x.size();int i;if(!n){putchar('\n');return;}rep(i,n-1) writer(x[i],' ');writer(x[n-1],'\n');} vector<std::string> split(const std::string &str, char sep){std::vector<std::string> v;std::stringstream ss(str);std::string buffer;while(std::getline(ss,buffer,sep)){v.push_back(buffer);}return v;} // #define int ll bool test = 1; int dx[] = { 0,0,1,-1 }; int dy[] = { 1,-1,0,0 }; //.................. ull mod = (int)1e9 + 7; signed main(){ int i,j,k,l; int N; scanf("%d",&N); printf("%d\n",!N); return 0; }