結果

問題 No.1519 Diversity
ユーザー simansiman
提出日時 2021-10-01 04:22:10
言語 Ruby
(3.3.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 56 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-07-18 09:27:48
合計ジャッジ時間 3,159 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,160 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 118 ms
14,592 KB
testcase_04 AC 145 ms
16,896 KB
testcase_05 AC 88 ms
12,288 KB
testcase_06 AC 168 ms
17,920 KB
testcase_07 AC 83 ms
12,288 KB
testcase_08 AC 97 ms
13,312 KB
testcase_09 AC 119 ms
14,720 KB
testcase_10 AC 147 ms
15,232 KB
testcase_11 AC 87 ms
12,160 KB
testcase_12 AC 168 ms
17,664 KB
testcase_13 AC 169 ms
18,048 KB
testcase_14 AC 169 ms
17,792 KB
testcase_15 AC 170 ms
17,920 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:2: warning: assigned but unused variable - cur
Syntax OK

ソースコード

diff #

N = gets.to_i
cur = 1
edges = []

1.upto(N - 1) do |u|
  (u + 1).upto(N - u + 1) do |v|
    edges << [u, v]
  end
end

puts edges.size
edges.each do |u, v|
  puts "%d %d" % [u, v]
end
0