結果

問題 No.272 NOT回路
ユーザー しめはじめ
提出日時 2019-07-16 11:17:35
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 119 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 27,136 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-30 05:38:46
合計ジャッジ時間 925 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(void){
    int input;
    scanf( "%d", &input );
    printf( "%d\n", ( input + 1 ) % 2 );
}
0