結果

問題 No.2749 随伴関手入門
ユーザー titiatitia
提出日時 2024-05-10 23:18:37
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 398 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 74,332 KB
最終ジャッジ日時 2024-05-10 23:18:44
合計ジャッジ時間 3,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 45 ms
66,048 KB
testcase_02 AC 59 ms
66,544 KB
testcase_03 AC 64 ms
64,492 KB
testcase_04 AC 46 ms
66,340 KB
testcase_05 AC 62 ms
65,944 KB
testcase_06 AC 61 ms
64,624 KB
testcase_07 AC 64 ms
66,280 KB
testcase_08 AC 46 ms
66,476 KB
testcase_09 AC 63 ms
66,132 KB
testcase_10 AC 62 ms
64,832 KB
testcase_11 AC 44 ms
65,280 KB
testcase_12 AC 64 ms
64,612 KB
testcase_13 AC 64 ms
64,560 KB
testcase_14 AC 65 ms
65,216 KB
testcase_15 AC 65 ms
64,588 KB
testcase_16 AC 45 ms
65,456 KB
testcase_17 AC 64 ms
65,556 KB
testcase_18 AC 64 ms
64,580 KB
testcase_19 AC 65 ms
64,804 KB
testcase_20 AC 65 ms
65,244 KB
testcase_21 AC 65 ms
64,556 KB
testcase_22 AC 45 ms
64,592 KB
testcase_23 AC 65 ms
64,832 KB
testcase_24 AC 88 ms
64,592 KB
testcase_25 AC 64 ms
64,460 KB
testcase_26 AC 65 ms
65,312 KB
testcase_27 AC 64 ms
65,096 KB
testcase_28 AC 65 ms
65,376 KB
testcase_29 AC 66 ms
64,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

F=[1,1,1]
for i in range(10000):
    F.append(F[-1]+F[-2])

N=int(input())

A=[0]*10000

for i in range(10000):
    if F[i]%N==0:
        A[i]=1

for i in range(10000):
    if A[i]==1:
        for j in range(i,10000,i):
            if A[j]==1:
                pass
            else:
                break
        else:
            print(i)
            exit()
0