結果

問題 No.272 NOT回路
ユーザー Maeda
提出日時 2025-03-07 14:56:58
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 164 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 24,192 KB
実行使用メモリ 8,608 KB
最終ジャッジ日時 2025-03-07 14:57:00
合計ジャッジ時間 1,265 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

void main(void){
	int notCircuit = 0;
	int input = scanf("%d",&notCircuit);
	if(notCircuit == 0){
		printf("0\n");
	}else{
		printf("1\n");
	}
}
0