結果

問題 No.796 well known
ユーザー horiesinitihoriesiniti
提出日時 2023-01-18 16:22:32
言語 Ruby
(3.3.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-06-11 17:21:00
合計ジャッジ時間 3,251 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,288 KB
testcase_01 AC 92 ms
12,032 KB
testcase_02 AC 91 ms
12,160 KB
testcase_03 AC 91 ms
12,288 KB
testcase_04 AC 120 ms
16,000 KB
testcase_05 AC 123 ms
16,256 KB
testcase_06 AC 120 ms
17,152 KB
testcase_07 AC 97 ms
13,056 KB
testcase_08 AC 116 ms
16,512 KB
testcase_09 AC 106 ms
14,720 KB
testcase_10 AC 122 ms
16,896 KB
testcase_11 AC 95 ms
12,672 KB
testcase_12 AC 106 ms
14,080 KB
testcase_13 AC 119 ms
15,872 KB
testcase_14 AC 102 ms
13,568 KB
testcase_15 AC 106 ms
14,336 KB
testcase_16 AC 120 ms
17,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

k=gets.to_i-1
ans=0
0.upto(k){|i|
	n=2*i+(k-i)+3
	if n%3==1 then
		ans=i
		break
	end
}
puts ("1"*(k-ans)+"2"*ans+"3").split("").join(" ")
0