結果

問題 No.1519 Diversity
ユーザー 👑 KazunKazun
提出日時 2021-05-30 04:05:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2024-11-08 20:37:55
合計ジャッジ時間 2,940 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 84 ms
77,312 KB
testcase_04 AC 95 ms
80,384 KB
testcase_05 AC 47 ms
51,584 KB
testcase_06 AC 103 ms
80,768 KB
testcase_07 AC 45 ms
52,992 KB
testcase_08 AC 78 ms
76,288 KB
testcase_09 AC 85 ms
77,568 KB
testcase_10 AC 96 ms
79,360 KB
testcase_11 AC 43 ms
51,968 KB
testcase_12 AC 101 ms
80,640 KB
testcase_13 AC 105 ms
80,768 KB
testcase_14 AC 105 ms
81,280 KB
testcase_15 AC 104 ms
81,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

E=[]
for u in range(1,N//2+1):
    for v in range(u+1,N-u+2):
        E.append((u,v))

"""
D=[0]*(N+1)
for u,v in E:
    D[u]+=1
    D[v]+=1
"""

print(len(E))
for u,v in E:
    print(u,v)
0