結果

問題 No.1469 programing
ユーザー kanno_kannokanno_kanno
提出日時 2021-04-22 18:25:05
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 210 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 95,280 KB
最終ジャッジ日時 2024-07-04 06:30:10
合計ジャッジ時間 8,307 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
18,976 KB
testcase_01 AC 77 ms
12,160 KB
testcase_02 AC 81 ms
12,288 KB
testcase_03 AC 76 ms
12,160 KB
testcase_04 AC 77 ms
12,288 KB
testcase_05 AC 82 ms
13,440 KB
testcase_06 AC 83 ms
12,416 KB
testcase_07 AC 80 ms
13,312 KB
testcase_08 AC 591 ms
94,080 KB
testcase_09 AC 908 ms
94,464 KB
testcase_10 AC 780 ms
95,280 KB
testcase_11 TLE -
testcase_12 AC 2,163 ms
79,152 KB
testcase_13 AC 84 ms
12,160 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def solve(line)
  length = line.length
  harurun = line[0]

  (1...length).each do |i|
    next if line[i - 1] == line[i]

    harurun += line[i]
  end

  return harurun
end

line = gets.chomp
puts solve(line)
0