結果

問題 No.684 Prefix Parenthesis
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-29 09:39:31
言語 Ruby
(3.3.0)
結果
AC  
実行時間 642 ms / 2,000 ms
コード長 163 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 24,960 KB
最終ジャッジ日時 2024-10-09 02:27:14
合計ジャッジ時間 13,058 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,032 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 85 ms
12,160 KB
testcase_03 AC 223 ms
15,104 KB
testcase_04 AC 416 ms
20,224 KB
testcase_05 AC 484 ms
20,736 KB
testcase_06 AC 225 ms
15,104 KB
testcase_07 AC 438 ms
20,736 KB
testcase_08 AC 129 ms
12,928 KB
testcase_09 AC 135 ms
13,184 KB
testcase_10 AC 610 ms
24,320 KB
testcase_11 AC 390 ms
20,480 KB
testcase_12 AC 147 ms
13,312 KB
testcase_13 AC 508 ms
23,808 KB
testcase_14 AC 477 ms
23,680 KB
testcase_15 AC 230 ms
15,744 KB
testcase_16 AC 469 ms
23,680 KB
testcase_17 AC 281 ms
18,048 KB
testcase_18 AC 99 ms
12,032 KB
testcase_19 AC 525 ms
24,832 KB
testcase_20 AC 564 ms
24,960 KB
testcase_21 AC 607 ms
24,832 KB
testcase_22 AC 476 ms
24,064 KB
testcase_23 AC 479 ms
24,064 KB
testcase_24 AC 603 ms
24,448 KB
testcase_25 AC 642 ms
24,448 KB
testcase_26 AC 92 ms
11,904 KB
testcase_27 AC 91 ms
12,032 KB
testcase_28 AC 93 ms
12,032 KB
testcase_29 AC 524 ms
24,576 KB
testcase_30 AC 542 ms
24,832 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a=b=0
l=[]
n=gets.to_i
gets.chomp.chars{|x|a-=x<')'?1:-1;b<a&&b=a;l<<[a,b]}
a=b=0
l.sort_by{|c,d|[e=c<=>0,e<0?d:c-d]}.map{|c,d|b<a+d&&b=a+d;a+=c}
p n*(n+1)/2+a-2*b
0