結果

問題 No.2749 随伴関手入門
ユーザー tomo0608tomo0608
提出日時 2024-05-10 21:50:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 54,080 KB
最終ジャッジ日時 2024-12-20 05:06:09
合計ジャッジ時間 2,388 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,484 KB
testcase_01 AC 39 ms
53,612 KB
testcase_02 AC 39 ms
52,128 KB
testcase_03 AC 37 ms
52,068 KB
testcase_04 AC 37 ms
54,024 KB
testcase_05 AC 37 ms
52,080 KB
testcase_06 AC 37 ms
53,424 KB
testcase_07 AC 38 ms
53,812 KB
testcase_08 AC 38 ms
52,336 KB
testcase_09 AC 37 ms
53,164 KB
testcase_10 AC 39 ms
52,520 KB
testcase_11 AC 40 ms
52,484 KB
testcase_12 AC 39 ms
52,328 KB
testcase_13 AC 39 ms
53,948 KB
testcase_14 AC 38 ms
52,740 KB
testcase_15 AC 38 ms
53,080 KB
testcase_16 AC 38 ms
52,608 KB
testcase_17 AC 38 ms
52,832 KB
testcase_18 AC 38 ms
52,192 KB
testcase_19 AC 38 ms
52,064 KB
testcase_20 AC 38 ms
52,492 KB
testcase_21 AC 36 ms
53,164 KB
testcase_22 AC 37 ms
52,884 KB
testcase_23 AC 37 ms
52,364 KB
testcase_24 AC 36 ms
53,316 KB
testcase_25 AC 37 ms
53,596 KB
testcase_26 AC 38 ms
52,884 KB
testcase_27 AC 38 ms
53,220 KB
testcase_28 AC 37 ms
54,080 KB
testcase_29 AC 38 ms
53,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
if n == 1:
	print(1)
	exit()
v = []
x,y,z = 1,1,3
while len(v) <= 1:
	x,y = y, (x+y)%n
	if y == 0:
		v.append(z)
	z += 1
print(v[1]-v[0])
0