結果

問題 No.892 タピオカ
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2019-10-22 01:01:57
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 129 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 11,516 KB
実行使用メモリ 16,156 KB
最終ジャッジ日時 2023-09-15 15:14:01
合計ジャッジ時間 1,507 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
15,260 KB
testcase_01 AC 77 ms
15,024 KB
testcase_02 AC 76 ms
15,020 KB
testcase_03 AC 80 ms
15,908 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

num = gets.chomp.split(' ').map(&:to_i).each_slice(2).inject(0) { |sum, (a, b)|
  sum + a**b
}

puts ":-#{num.even? ? ')' : '('}"
0