結果

問題 No.746 7の倍数
ユーザー simansiman
提出日時 2020-11-12 09:04:54
言語 Ruby
(3.3.0)
結果
AC  
実行時間 751 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 93,080 KB
最終ジャッジ日時 2024-07-22 19:02:15
合計ジャッジ時間 8,428 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,288 KB
testcase_01 AC 77 ms
12,288 KB
testcase_02 AC 72 ms
12,288 KB
testcase_03 AC 751 ms
92,896 KB
testcase_04 AC 76 ms
14,848 KB
testcase_05 AC 103 ms
44,672 KB
testcase_06 AC 262 ms
93,068 KB
testcase_07 AC 207 ms
92,920 KB
testcase_08 AC 286 ms
92,936 KB
testcase_09 AC 206 ms
92,908 KB
testcase_10 AC 100 ms
41,728 KB
testcase_11 AC 470 ms
92,936 KB
testcase_12 AC 751 ms
92,892 KB
testcase_13 AC 355 ms
93,072 KB
testcase_14 AC 465 ms
92,956 KB
testcase_15 AC 395 ms
93,080 KB
testcase_16 AC 430 ms
92,920 KB
testcase_17 AC 410 ms
92,908 KB
testcase_18 AC 434 ms
93,080 KB
testcase_19 AC 385 ms
92,908 KB
testcase_20 AC 198 ms
92,908 KB
testcase_21 AC 124 ms
56,192 KB
testcase_22 AC 551 ms
92,956 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i

if N == 0
  puts 0
  exit
end

str = '142857'
ans = '0.'
idx = 0

N.times do
  ans += str[idx % 6]
  idx += 1
end

puts ans
0