結果

問題 No.892 タピオカ
ユーザー wipexwipex
提出日時 2019-09-28 21:34:13
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 241 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-10-03 04:15:50
合計ジャッジ時間 1,219 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

a = 0
ab = gets.chomp.split(" ").map(&:to_i)

0.step(ab.length-1,2) do |x|
  a+=ab[x].pow(ab[x+1],1)
end
#p a                                                                                     

if a%2 ==0
  puts ":-)"
else
  puts ":-("
end
0