結果
問題 | No.564 背の順 |
ユーザー | RadPeria |
提出日時 | 2017-12-03 00:04:45 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,042 bytes |
コンパイル時間 | 325 ms |
コンパイル使用メモリ | 30,336 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-06 02:00:11 |
合計ジャッジ時間 | 887 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
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 |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
5,376 KB |
ソースコード
#include <stdio.h> int main(){ int A,N; scanf("%d%d",&A,&N ); int i; int B[N]; for(i=1;i<N;i++){ scanf("%d",&B[i] ); } int count=1; for(i=1;i<N;i++){ if(A<B[i]){ count++; } } int dubnt=0; for(i=0;i<=9;i++){ if(count==i*10+1){ printf("%dst\n",count); dubnt++; break; }else if(count==i*10+2){ printf("%dnd\n",count); dubnt++; break; }else if(count==i*10+3){ printf("%drd\n",count); dubnt++; break; } } for(i=0;i<=9;i++){ if(dubnt==0){ printf("%dth\n",count ); } } return 0; }