結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 44 ms
52,440 KB
testcase_02 AC 41 ms
52,684 KB
testcase_03 AC 44 ms
58,428 KB
testcase_04 AC 44 ms
58,820 KB
testcase_05 AC 49 ms
63,636 KB
testcase_06 AC 46 ms
61,364 KB
testcase_07 AC 48 ms
62,636 KB
testcase_08 AC 45 ms
60,036 KB
testcase_09 AC 50 ms
65,440 KB
testcase_10 AC 47 ms
60,612 KB
testcase_11 AC 46 ms
59,608 KB
testcase_12 AC 47 ms
62,040 KB
testcase_13 AC 49 ms
62,960 KB
testcase_14 AC 47 ms
62,552 KB
testcase_15 AC 50 ms
64,616 KB
testcase_16 AC 44 ms
60,696 KB
testcase_17 AC 44 ms
58,764 KB
testcase_18 AC 50 ms
65,608 KB
testcase_19 AC 51 ms
64,656 KB
testcase_20 AC 47 ms
62,612 KB
testcase_21 AC 45 ms
58,596 KB
testcase_22 AC 52 ms
65,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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