結果
問題 | No.564 背の順 |
ユーザー | Haruki0804S |
提出日時 | 2018-10-23 16:49:05 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 807 bytes |
コンパイル時間 | 134 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-19 04:15:30 |
合計ジャッジ時間 | 1,051 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 32 ms
10,624 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 31 ms
10,624 KB |
testcase_06 | AC | 31 ms
10,752 KB |
testcase_07 | AC | 30 ms
10,752 KB |
testcase_08 | WA | - |
testcase_09 | AC | 31 ms
10,624 KB |
testcase_10 | AC | 31 ms
10,624 KB |
testcase_11 | AC | 31 ms
10,752 KB |
ソースコード
S=input().split(' ') H=int(S[0]) N=int(S[1]) T=[] for i in range(N-1): T.append(input()) rank=0 for i in range(N-1): if(H < int(max(T))): rank=rank+1 T.remove(max(T)) if(i==N-2): print(rank+1,end='') if( (rank+1) % 10 == 1): print('st') if( (rank+1) % 10 == 2): print('nd') if( (rank+1) % 10 == 3): print('rd') else: print('th') else: print(rank+1,end='') if( (rank+1) % 10 ==1): print('st') break if( (rank+1) % 10 == 2): print('nd') break if( (rank+1) % 10 == 3): print('rd') break else: print('th') break