結果
問題 | No.3032 Unavailability of Inequality Signs |
ユーザー | square1001 |
提出日時 | 2018-04-01 22:16:10 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 198 bytes |
コンパイル時間 | 209 ms |
コンパイル使用メモリ | 27,904 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-06-26 05:49:59 |
合計ジャッジ時間 | 7,539 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
8,480 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 | 878 ms
5,376 KB |
testcase_06 | AC | 1,174 ms
5,376 KB |
testcase_07 | AC | 574 ms
5,376 KB |
testcase_08 | AC | 950 ms
5,376 KB |
testcase_09 | TLE | - |
コンパイルメッセージ
main.c: In function 'main': main.c:3:9: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration] 3 | scanf("%d", &n); | ^~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf' +++ |+#include <stdio.h> 1 | int n, a, b; main.c:3:9: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch] 3 | scanf("%d", &n); | ^~~~~ main.c:3:9: note: include '<stdio.h>' or provide a declaration of 'scanf' main.c:7:23: warning: implicit declaration of function 'putchar' [-Wimplicit-function-declaration] 7 | if(a) putchar(62); | ^~~~~~~ main.c:7:23: note: include '<stdio.h>' or provide a declaration of 'putchar'
ソースコード
int n, a, b; int main() { scanf("%d", &n); while(n--) { scanf("%d %d", &a, &b); while(a && b) a--, b--; if(a) putchar(62); else if(b) putchar(60); else putchar(61); putchar('\n'); } }