結果

問題 No.2796 Small Matryoshka
ユーザー KDKJKDKJ
提出日時 2024-06-28 22:57:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 373 bytes
コンパイル時間 772 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 100,864 KB
最終ジャッジ日時 2024-06-28 22:57:40
合計ジャッジ時間 6,670 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,328 KB
testcase_01 AC 33 ms
51,712 KB
testcase_02 AC 31 ms
52,352 KB
testcase_03 AC 32 ms
51,328 KB
testcase_04 WA -
testcase_05 AC 112 ms
78,848 KB
testcase_06 AC 356 ms
96,000 KB
testcase_07 AC 38 ms
52,608 KB
testcase_08 AC 279 ms
91,520 KB
testcase_09 AC 308 ms
99,004 KB
testcase_10 AC 433 ms
100,096 KB
testcase_11 AC 396 ms
100,864 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #





def main():
    
    N = int(input())
    array = [list(map(int,input().split())) for _ in range(N)]
    
    array.sort(key = lambda x:-x[0])
    now = array[0][0]
    ans = 0
    for r,R in array[1:]:
        if R <= now:
            now = r
        else:
            ans += 1
            now = r *now/R
    print(ans)
    


if __name__ == '__main__':
    main()


0