結果

問題 No.5001 排他的論理和でランニング
ユーザー letrangerjpletrangerjp
提出日時 2018-03-24 19:13:40
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,247 ms / 1,500 ms
コード長 182 bytes
コンパイル時間 39 ms
実行使用メモリ 28,928 KB
スコア 23,275,459
最終ジャッジ日時 2020-03-12 20:24:10
ジャッジサーバーID
(参考情報)
judge6 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 714 ms
28,928 KB
testcase_01 AC 277 ms
13,928 KB
testcase_02 AC 188 ms
15,308 KB
testcase_03 AC 277 ms
19,372 KB
testcase_04 AC 156 ms
28,704 KB
testcase_05 AC 119 ms
16,988 KB
testcase_06 AC 323 ms
22,816 KB
testcase_07 AC 69 ms
24,056 KB
testcase_08 AC 140 ms
25,604 KB
testcase_09 AC 186 ms
11,668 KB
testcase_10 AC 720 ms
15,724 KB
testcase_11 AC 139 ms
17,932 KB
testcase_12 AC 126 ms
16,548 KB
testcase_13 AC 232 ms
25,872 KB
testcase_14 AC 592 ms
21,032 KB
testcase_15 AC 90 ms
17,260 KB
testcase_16 AC 89 ms
13,672 KB
testcase_17 AC 32 ms
14,900 KB
testcase_18 AC 177 ms
20,164 KB
testcase_19 AC 52 ms
17,984 KB
testcase_20 AC 950 ms
16,116 KB
testcase_21 AC 1,247 ms
0 KB
testcase_22 AC 90 ms
12,960 KB
testcase_23 AC 298 ms
0 KB
testcase_24 AC 333 ms
18,076 KB
testcase_25 AC 250 ms
26,660 KB
testcase_26 AC 64 ms
24,340 KB
testcase_27 AC 107 ms
19,604 KB
testcase_28 AC 209 ms
23,348 KB
testcase_29 AC 256 ms
25,500 KB
testcase_30 AC 396 ms
0 KB
testcase_31 AC 293 ms
21,916 KB
testcase_32 AC 130 ms
15,768 KB
testcase_33 AC 267 ms
26,996 KB
testcase_34 AC 650 ms
28,700 KB
testcase_35 AC 488 ms
22,640 KB
testcase_36 AC 106 ms
28,320 KB
testcase_37 AC 404 ms
24,068 KB
testcase_38 AC 127 ms
15,780 KB
testcase_39 AC 98 ms
17,224 KB
testcase_40 AC 166 ms
19,440 KB
testcase_41 AC 885 ms
13,132 KB
testcase_42 AC 71 ms
17,952 KB
testcase_43 AC 266 ms
19,320 KB
testcase_44 AC 265 ms
25,960 KB
testcase_45 AC 200 ms
26,696 KB
testcase_46 AC 250 ms
27,136 KB
testcase_47 AC 144 ms
17,880 KB
testcase_48 AC 294 ms
16,120 KB
testcase_49 AC 685 ms
23,788 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

eval"N,M,*A="+gets(p).split*?,
curr = A[0...M].inject:^
loop.any?{
  i = rand M
  j = rand N-M
  A[i], A[j] = A[j], A[i]
  curr ^= A[i] ^ A[j]
  curr == (1<<20)-1&&$><<A[0...M]*" "
}
0