結果

問題 No.1519 Diversity
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-02-07 12:29:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 80,856 KB
最終ジャッジ日時 2024-11-06 15:59:12
合計ジャッジ時間 2,376 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,712 KB
testcase_01 AC 40 ms
51,820 KB
testcase_02 AC 39 ms
51,960 KB
testcase_03 AC 77 ms
77,180 KB
testcase_04 AC 84 ms
80,104 KB
testcase_05 AC 39 ms
53,856 KB
testcase_06 AC 90 ms
80,856 KB
testcase_07 AC 41 ms
53,972 KB
testcase_08 AC 68 ms
76,544 KB
testcase_09 AC 72 ms
77,056 KB
testcase_10 AC 80 ms
79,324 KB
testcase_11 AC 40 ms
52,560 KB
testcase_12 AC 89 ms
80,572 KB
testcase_13 AC 90 ms
80,652 KB
testcase_14 AC 92 ms
80,728 KB
testcase_15 AC 90 ms
80,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
assert(2 <= n <= 500)
ans = []
for i in range(n // 2):
    for j in range(i + 1, n - i):
        ans.append((i + 1, j + 1))
m = len(ans)
print(m)
for u, v in ans:
    print(u, v)
0