結果

問題 No.1519 Diversity
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-31 19:25:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 81,164 KB
最終ジャッジ日時 2024-04-26 08:09:24
合計ジャッジ時間 2,134 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,000 KB
testcase_01 AC 34 ms
53,132 KB
testcase_02 AC 35 ms
52,344 KB
testcase_03 AC 67 ms
77,092 KB
testcase_04 AC 77 ms
80,164 KB
testcase_05 AC 35 ms
53,680 KB
testcase_06 AC 81 ms
80,760 KB
testcase_07 AC 36 ms
53,476 KB
testcase_08 AC 60 ms
76,240 KB
testcase_09 AC 68 ms
77,204 KB
testcase_10 AC 76 ms
79,376 KB
testcase_11 AC 36 ms
52,616 KB
testcase_12 AC 81 ms
80,852 KB
testcase_13 AC 83 ms
80,948 KB
testcase_14 AC 81 ms
81,164 KB
testcase_15 AC 82 ms
81,044 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