結果
問題 |
No.564 背の順
|
ユーザー |
![]() |
提出日時 | 2024-05-03 00:42:07 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 202 bytes |
コンパイル時間 | 165 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-23 20:30:26 |
合計ジャッジ時間 | 1,212 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 WA * 3 |
ソースコード
h,n = map(int,input().split()) c = 1 for i in range(n-1): hs = int(input()) if hs > h: c += 1 if c == 1: print("1st") elif c == 2: print("2nd") elif c == 3: print("3rd") else: print(str(c)+"th")