結果
問題 | No.9005 実行時間/使用メモリテスト(テスト用) |
ユーザー | mai |
提出日時 | 2017-08-01 09:10:33 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 214 bytes |
コンパイル時間 | 219 ms |
コンパイル使用メモリ | 27,904 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-11 05:45:05 |
合計ジャッジ時間 | 684 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | WA | - |
コンパイルメッセージ
main.c:5:1: warning: return type defaults to 'int' [-Wimplicit-int] 5 | main(){ | ^~~~
ソースコード
#include <stdio.h> #define wt(s) printf("%d",s) int n; main(){ n = getchar()-'0'; if (n==1) wt(!(getchar()==10 && getchar()==13)); if (n==2) wt(!(getchar()==13)); if (n==3) wt(!(getchar()==10)); if (n==4) wt(0); }