結果

問題 No.51 やる気の問題
ユーザー nohakai3nohakai3
提出日時 2022-10-23 08:21:12
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 110 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 65,024 KB
最終ジャッジ日時 2024-07-02 03:35:46
合計ジャッジ時間 2,159 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 43 ms
51,712 KB
testcase_02 RE -
testcase_03 AC 48 ms
58,240 KB
testcase_04 AC 46 ms
57,600 KB
testcase_05 AC 50 ms
62,720 KB
testcase_06 AC 48 ms
61,312 KB
testcase_07 AC 49 ms
61,184 KB
testcase_08 AC 47 ms
59,776 KB
testcase_09 AC 52 ms
65,024 KB
testcase_10 AC 48 ms
60,032 KB
testcase_11 AC 47 ms
59,776 KB
testcase_12 AC 49 ms
62,080 KB
testcase_13 AC 49 ms
61,824 KB
testcase_14 AC 49 ms
60,672 KB
testcase_15 AC 51 ms
63,232 KB
testcase_16 AC 46 ms
59,264 KB
testcase_17 AC 45 ms
58,240 KB
testcase_18 AC 51 ms
64,000 KB
testcase_19 AC 52 ms
64,512 KB
testcase_20 AC 48 ms
61,568 KB
testcase_21 AC 46 ms
58,112 KB
testcase_22 AC 53 ms
64,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=int(input())
b=int(input())
l=[]
for i in range(b,0,-1):
    a-=(a//(i*i))
    l.append(a)
print(l[-2])
    
0