結果
問題 | No.123 カードシャッフル |
ユーザー | HKDnet |
提出日時 | 2015-01-12 00:29:07 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 272 bytes |
コンパイル時間 | 62 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 19,456 KB |
最終ジャッジ日時 | 2024-06-22 04:15:05 |
合計ジャッジ時間 | 1,906 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 82 ms
12,160 KB |
testcase_01 | AC | 83 ms
12,160 KB |
testcase_02 | AC | 78 ms
12,288 KB |
testcase_03 | AC | 79 ms
12,160 KB |
testcase_04 | AC | 75 ms
12,288 KB |
testcase_05 | AC | 75 ms
12,032 KB |
testcase_06 | WA | - |
testcase_07 | AC | 75 ms
12,288 KB |
testcase_08 | AC | 79 ms
12,160 KB |
testcase_09 | AC | 76 ms
12,160 KB |
testcase_10 | AC | 118 ms
19,456 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
gets # 不要なので捨て shuffles = gets.chomp.split.map{|str| str.to_i} target = 1 shuffles.reverse.each {|tmp| if target == 1 target = tmp next end if tmp < target next elsif tmp > target target -= 1 else target = 1 end } puts target