結果

問題 No.716 距離
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2020-11-07 17:53:24
言語 Ruby
(3.3.0)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 94 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 22,656 KB
最終ジャッジ日時 2024-07-22 14:39:21
合計ジャッジ時間 7,763 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 261 ms
22,400 KB
testcase_01 AC 265 ms
22,656 KB
testcase_02 AC 253 ms
22,272 KB
testcase_03 AC 259 ms
22,400 KB
testcase_04 AC 290 ms
22,400 KB
testcase_05 AC 283 ms
22,528 KB
testcase_06 AC 256 ms
22,528 KB
testcase_07 AC 73 ms
12,288 KB
testcase_08 AC 76 ms
12,160 KB
testcase_09 AC 76 ms
12,160 KB
testcase_10 AC 206 ms
19,968 KB
testcase_11 AC 115 ms
14,720 KB
testcase_12 AC 248 ms
21,760 KB
testcase_13 AC 190 ms
19,328 KB
testcase_14 AC 78 ms
12,288 KB
testcase_15 AC 244 ms
20,992 KB
testcase_16 AC 139 ms
17,280 KB
testcase_17 AC 233 ms
21,504 KB
testcase_18 AC 78 ms
12,288 KB
testcase_19 AC 117 ms
16,512 KB
testcase_20 AC 76 ms
12,288 KB
testcase_21 AC 83 ms
12,288 KB
testcase_22 AC 94 ms
12,928 KB
testcase_23 AC 77 ms
12,160 KB
testcase_24 AC 205 ms
19,840 KB
testcase_25 AC 115 ms
16,128 KB
testcase_26 AC 154 ms
17,664 KB
testcase_27 AC 170 ms
18,688 KB
testcase_28 AC 85 ms
12,544 KB
testcase_29 AC 152 ms
17,920 KB
testcase_30 AC 149 ms
17,664 KB
testcase_31 AC 188 ms
19,456 KB
testcase_32 AC 167 ms
18,688 KB
testcase_33 AC 157 ms
18,304 KB
testcase_34 AC 138 ms
17,152 KB
testcase_35 AC 74 ms
12,160 KB
testcase_36 AC 88 ms
12,544 KB
testcase_37 AC 79 ms
12,032 KB
testcase_38 AC 104 ms
14,336 KB
testcase_39 AC 158 ms
18,048 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets
gets.split.map(&:to_i).permutation(2).map{|a| (a[0] - a[1]).abs}.minmax.each {|x| puts x}
0