結果

問題 No.272 NOT回路
ユーザー Maeda
提出日時 2025-03-07 14:56:25
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 160 bytes
コンパイル時間 661 ms
コンパイル使用メモリ 24,320 KB
実行使用メモリ 8,608 KB
最終ジャッジ日時 2025-03-07 14:56:26
合計ジャッジ時間 1,305 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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");
	}else{
		printf("1");
	}
}
0