結果

問題 No.857 素振り
ユーザー wipexwipex
提出日時 2019-09-14 13:50:54
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 117 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-07-05 21:22:45
合計ジャッジ時間 3,083 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

cnt = 0
x,y,z = gets.chomp.split(" ").map(&:to_i)
for i in 1..z do
  next if i == x or i ==y
  cnt +=1
end

puts cnt
0