結果

問題 No.1519 Diversity
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-31 19:25:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 81,152 KB
最終ジャッジ日時 2024-11-08 21:20:34
合計ジャッジ時間 2,700 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,096 KB
testcase_01 AC 43 ms
51,712 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 83 ms
76,912 KB
testcase_04 AC 98 ms
79,872 KB
testcase_05 AC 43 ms
51,968 KB
testcase_06 AC 105 ms
80,756 KB
testcase_07 AC 46 ms
52,992 KB
testcase_08 AC 78 ms
76,224 KB
testcase_09 AC 85 ms
77,440 KB
testcase_10 AC 97 ms
79,232 KB
testcase_11 AC 43 ms
52,224 KB
testcase_12 AC 102 ms
80,768 KB
testcase_13 AC 104 ms
80,696 KB
testcase_14 AC 104 ms
81,152 KB
testcase_15 AC 104 ms
80,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

ans = []
for i in range(n-1):
    if i+1 > n-i:
        break
    for j in range(i+1, n-i):
        ans.append((i+1, j+1))
print(len(ans))
for u, v in ans:
    print(u, v)
0