結果
問題 | No.742 にゃんにゃんにゃん 猫の挨拶 |
ユーザー | manhattaner |
提出日時 | 2018-11-02 20:53:10 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 602 bytes |
コンパイル時間 | 120 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 24,960 KB |
最終ジャッジ日時 | 2024-11-20 14:45:51 |
合計ジャッジ時間 | 9,767 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 91 ms
19,104 KB |
testcase_01 | AC | 87 ms
24,960 KB |
testcase_02 | AC | 87 ms
19,232 KB |
testcase_03 | AC | 90 ms
12,160 KB |
testcase_04 | AC | 92 ms
12,032 KB |
testcase_05 | AC | 100 ms
12,032 KB |
testcase_06 | AC | 113 ms
12,160 KB |
testcase_07 | AC | 190 ms
12,160 KB |
testcase_08 | AC | 422 ms
12,288 KB |
testcase_09 | AC | 93 ms
12,288 KB |
testcase_10 | AC | 90 ms
12,288 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 91 ms
12,160 KB |
testcase_14 | AC | 92 ms
12,160 KB |
testcase_15 | AC | 94 ms
19,104 KB |
コンパイルメッセージ
Syntax OK
ソースコード
N = gets.to_i Goal = ([0]*N).map{ gets.to_i } greeting_count = 0 for i in 0...Goal.size do myPos = i + 1 myGoal = Goal[i] for j in (i+1)...Goal.size do otherPos = j + 1 if (myPos <= Goal[j] && Goal[j] <= myGoal) || (Goal[j] <= myGoal && myPos <= otherPos) then #puts "Greet myPos: #{myPos}, otherPos: #{otherPos}, Goal[#{j}]: #{Goal[j]}, myGoal: #{myGoal}" greeting_count += 1 else #puts "not Greet myPos: #{myPos}, otherPos: #{otherPos}, Goal[#{j}]: #{Goal[j]}, myGoal: #{myGoal}" end end end puts greeting_count