結果
問題 | No.564 背の順 |
ユーザー | pengin_2000 |
提出日時 | 2019-07-07 01:33:37 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 359 bytes |
コンパイル時間 | 227 ms |
コンパイル使用メモリ | 29,568 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 21:43:07 |
合計ジャッジ時間 | 772 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
ソースコード
#include<stdio.h> int main() { int H, n; scanf("%d %d", &H, &n); int i; int h[102]; for (i = 0; i < n - 1; i++) scanf("%d", &h[i]); int ans = 1; for (i = 0; i < n - 1; i++) if (h[i] > H) ans++; printf("%d", ans); if (ans == 1)printf("st\n"); if (ans == 2)printf("nd\n"); if (ans == 3)printf("rd\n"); if (ans > 3)printf("th\n"); return 0; }