結果

問題 No.1664 Unstable f(n)
ユーザー jamesjames
提出日時 2021-09-03 22:01:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 285 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-12-15 13:19:04
合計ジャッジ時間 38,485 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
15,872 KB
testcase_01 AC 40 ms
20,992 KB
testcase_02 AC 28 ms
16,000 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 26 ms
21,248 KB
testcase_08 AC 26 ms
16,000 KB
testcase_09 AC 27 ms
21,248 KB
testcase_10 WA -
testcase_11 AC 1,709 ms
21,248 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 WA -
testcase_22 AC 29 ms
10,624 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 AC 27 ms
10,624 KB
testcase_25 AC 28 ms
10,624 KB
testcase_26 AC 28 ms
10,752 KB
testcase_27 AC 28 ms
10,624 KB
testcase_28 AC 28 ms
10,496 KB
testcase_29 AC 27 ms
10,496 KB
testcase_30 AC 29 ms
10,624 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 TLE -
testcase_36 WA -
testcase_37 TLE -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = input()
    n = int(n)
    # as multiple as possible

    i,j,k = 0,2,0

    for a in range(0,10**10): # fix range
        if n <= a**2:
            i = a-1
            break
    
    k = n - i**j
    
    return print(i+j+k)


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