結果

問題 No.272 NOT回路
ユーザー ldsyb
提出日時 2016-02-25 15:49:31
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 128 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 55,600 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 13:41:53
合計ジャッジ時間 950 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other AC * 6 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main(){
   int x;
   if(cin >> x) cout << 0 << endl;
   else cout << 1 << endl;
}
0