結果
問題 |
No.564 背の順
|
ユーザー |
|
提出日時 | 2018-07-10 13:55:01 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 269 bytes |
コンパイル時間 | 93 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-21 07:21:45 |
合計ジャッジ時間 | 1,053 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 WA * 3 |
ソースコード
base, n = map(int, input().split()) res = 1 for i in range(1, n): if int(input()) > base: res += 1 if res == 1: print(str(res) + "st") elif res == 2: print(str(res) + "nd") elif res == 3: print(str(res) + "rd") else: print(str(res) + "th")