結果

問題 No.504 ゲーム大会(ランキング)
ユーザー トミートミー
提出日時 2024-04-14 03:00:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 80,016 KB
最終ジャッジ日時 2024-10-03 00:24:11
合計ジャッジ時間 2,399 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 43 ms
51,840 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 39 ms
51,456 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 130 ms
79,888 KB
testcase_08 AC 132 ms
79,344 KB
testcase_09 AC 124 ms
80,016 KB
testcase_10 AC 124 ms
79,512 KB
testcase_11 AC 132 ms
79,544 KB
testcase_12 AC 126 ms
79,764 KB
testcase_13 AC 121 ms
79,516 KB
testcase_14 AC 131 ms
79,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    k = int(input())
    rank = 1
    result = [1]
    for i in range(1, n):
        a = int(input())
        if k < a:
            rank += 1
        result.append(rank)
    for i in result:
        print(i)


if __name__ == "__main__":
    main()
0