結果

問題 No.1519 Diversity
ユーザー marroncastlemarroncastle
提出日時 2021-05-28 21:01:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2024-04-24 23:17:30
合計ジャッジ時間 2,891 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 46 ms
51,968 KB
testcase_02 AC 47 ms
51,712 KB
testcase_03 AC 89 ms
77,056 KB
testcase_04 AC 103 ms
79,872 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 110 ms
81,024 KB
testcase_07 AC 44 ms
52,864 KB
testcase_08 AC 79 ms
76,800 KB
testcase_09 AC 88 ms
77,056 KB
testcase_10 AC 94 ms
79,488 KB
testcase_11 AC 43 ms
52,096 KB
testcase_12 AC 102 ms
80,768 KB
testcase_13 AC 104 ms
80,896 KB
testcase_14 AC 104 ms
80,768 KB
testcase_15 AC 105 ms
81,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = []
for i in range(N):
  for j in range(i+1,N-i):
    ans.append((i+1,j+1))
print(len(ans))
for a in ans:
  print(*a)
0