結果

問題 No.1458 Segment Function
ユーザー kotatsugamekotatsugame
提出日時 2021-03-31 21:20:14
言語 Ruby
(3.3.0)
結果
AC  
実行時間 551 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-10-12 13:33:25
合計ジャッジ時間 11,764 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 84 ms
12,160 KB
testcase_02 AC 84 ms
12,160 KB
testcase_03 AC 84 ms
12,160 KB
testcase_04 AC 86 ms
12,032 KB
testcase_05 AC 87 ms
12,032 KB
testcase_06 AC 84 ms
12,160 KB
testcase_07 AC 88 ms
12,160 KB
testcase_08 AC 515 ms
13,184 KB
testcase_09 AC 513 ms
13,440 KB
testcase_10 AC 512 ms
13,184 KB
testcase_11 AC 514 ms
13,312 KB
testcase_12 AC 512 ms
13,312 KB
testcase_13 AC 135 ms
13,184 KB
testcase_14 AC 140 ms
13,184 KB
testcase_15 AC 138 ms
12,928 KB
testcase_16 AC 138 ms
13,184 KB
testcase_17 AC 141 ms
13,184 KB
testcase_18 AC 551 ms
13,952 KB
testcase_19 AC 550 ms
13,952 KB
testcase_20 AC 551 ms
13,824 KB
testcase_21 AC 550 ms
13,952 KB
testcase_22 AC 544 ms
13,696 KB
testcase_23 AC 84 ms
12,288 KB
testcase_24 AC 480 ms
13,184 KB
testcase_25 AC 85 ms
12,032 KB
testcase_26 AC 246 ms
13,952 KB
testcase_27 AC 247 ms
13,952 KB
testcase_28 AC 85 ms
12,160 KB
testcase_29 AC 202 ms
13,312 KB
testcase_30 AC 201 ms
13,184 KB
testcase_31 AC 113 ms
13,184 KB
testcase_32 AC 515 ms
13,184 KB
testcase_33 AC 512 ms
13,184 KB
testcase_34 AC 516 ms
13,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def f(x)
	if x<0
		1+f(-x)
	else
		ret=0
		x.to_s.bytes{|c|
			ret+=[6,2,5,5,4,5,6,4,7,6][c-48]
		}
		ret
	end
end
x,n=gets.split.map &:to_i
while n>0
	n-=1
	y=f(x)
	if x==y
		break
	end
	x=y
end
p x
0