結果

問題 No.2624 Prediction by Average
ユーザー detteiuudetteiuu
提出日時 2024-08-17 15:36:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 317 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 69,812 KB
最終ジャッジ日時 2024-08-17 15:37:00
合計ジャッジ時間 1,706 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
60,000 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 54 ms
60,720 KB
testcase_04 WA -
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

D = dict()
for i in range(1, 1001):
    for j in range(1, i+1):
        n = j*1000//i%1000
        if n not in D:
            D[n] = i

for _ in range(T):
    N, S = input().split()
    N = int(N)
    if S.startswith("100"):
        S = int(S[4:])
    else:
        S = int(S[3:])
    print(N//D[S])
0