結果

問題 No.2851 Make Pairs
ユーザー suzuishisuzuishi
提出日時 2024-08-25 17:27:35
言語 Ruby
(3.3.0)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 62 bytes
コンパイル時間 800 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 38,304 KB
最終ジャッジ日時 2024-08-25 17:27:39
合計ジャッジ時間 3,466 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,288 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 208 ms
35,328 KB
testcase_03 AC 220 ms
35,456 KB
testcase_04 AC 226 ms
36,480 KB
testcase_05 AC 175 ms
25,472 KB
testcase_06 AC 243 ms
38,304 KB
testcase_07 AC 87 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n = gets.to_i
a = gets.split.map &:to_i
p a.tally.sum {_2 / 2}
0