結果
問題 | No.272 NOT回路 |
ユーザー |
![]() |
提出日時 | 2016-11-28 17:34:52 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 135 bytes |
コンパイル時間 | 260 ms |
コンパイル使用メモリ | 19,712 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 12:40:12 |
合計ジャッジ時間 | 673 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 11 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%d",&n); | ^~~~~~~~~~~~~~
ソースコード
#include <stdio.h>int main(void) {int n;scanf("%d",&n);if(n==0){printf("1\n");}else{printf("0\n");}return 0;}