結果
問題 | No.3032 Unavailability of Inequality Signs |
ユーザー | tanzaku |
提出日時 | 2018-04-01 22:24:45 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 405 bytes |
コンパイル時間 | 132 ms |
コンパイル使用メモリ | 27,904 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 05:53:37 |
合計ジャッジ時間 | 775 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.c: In function 'main': main.c:7:5: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration] 7 | scanf("%d", &n); | ^~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf' +++ |+#include <stdio.h> 1 | main.c:7:5: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch] 7 | scanf("%d", &n); | ^~~~~ main.c:7:5: note: include '<stdio.h>' or provide a declaration of 'scanf' main.c:21:9: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 21 | printf("%c\n", ch); | ^~~~~~ main.c:21:9: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:21:9: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] main.c:21:9: note: include '<stdio.h>' or provide a declaration of 'printf'
ソースコード
int n; int a[100]; int b[100]; int main() { scanf("%d", &n); while (n--) { int a, b; scanf("%d%d", &a, &b); char bra = 0x3c; char cket = 0x3e; char ch; if (a / b == 0) { ch = bra; } else if (b / a == 0) { ch = cket; } else { ch = '='; } printf("%c\n", ch); } return 0; }