結果
問題 |
No.272 NOT回路
|
ユーザー |
![]() |
提出日時 | 2023-06-23 16:36:17 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 193 bytes |
コンパイル時間 | 199 ms |
コンパイル使用メモリ | 29,056 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 20:48:42 |
合計ジャッジ時間 | 877 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 11 |
ソースコード
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <math.h> int main() { int x = 0; scanf("%d", &x); if (x == 0) { printf("1\n"); } else { printf("0\n"); } }