結果
問題 | No.619 CardShuffle |
ユーザー | くれちー |
提出日時 | 2017-12-12 07:49:37 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 271 bytes |
コンパイル時間 | 79 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 121,360 KB |
最終ジャッジ日時 | 2024-06-02 04:10:31 |
合計ジャッジ時間 | 6,536 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 81 ms
19,232 KB |
testcase_01 | AC | 83 ms
12,160 KB |
testcase_02 | AC | 79 ms
12,160 KB |
testcase_03 | AC | 75 ms
12,288 KB |
testcase_04 | AC | 76 ms
12,416 KB |
testcase_05 | AC | 78 ms
12,160 KB |
testcase_06 | AC | 81 ms
12,160 KB |
testcase_07 | AC | 84 ms
12,160 KB |
testcase_08 | AC | 80 ms
12,160 KB |
testcase_09 | AC | 77 ms
12,160 KB |
testcase_10 | AC | 76 ms
12,416 KB |
testcase_11 | AC | 77 ms
12,288 KB |
testcase_12 | AC | 78 ms
12,416 KB |
testcase_13 | AC | 76 ms
12,160 KB |
testcase_14 | AC | 78 ms
12,288 KB |
testcase_15 | AC | 80 ms
12,288 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n Main.rb:4: warning: assigned but unused variable - i Syntax OK
ソースコード
n = gets.to_i c = gets.chomp.delete(' ') q = gets.to_i for i in 1 .. q do t, *p = gets.split x, y = p.map(&:to_i).map{|n| n - 1} if t == "!" then c[y], c[x] = c[x], c[y] else fxy = (eval c[x .. y]) % 1000000007 puts fxy end end