結果

問題 No.1519 Diversity
ユーザー marroncastlemarroncastle
提出日時 2021-05-28 21:01:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 781 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 81,024 KB
最終ジャッジ日時 2024-11-07 08:32:59
合計ジャッジ時間 2,392 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,680 KB
testcase_01 AC 38 ms
51,760 KB
testcase_02 AC 38 ms
51,864 KB
testcase_03 AC 71 ms
77,100 KB
testcase_04 AC 83 ms
79,488 KB
testcase_05 AC 38 ms
51,200 KB
testcase_06 AC 93 ms
80,848 KB
testcase_07 AC 41 ms
52,480 KB
testcase_08 AC 68 ms
76,288 KB
testcase_09 AC 73 ms
77,184 KB
testcase_10 AC 81 ms
79,224 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 89 ms
80,768 KB
testcase_13 AC 93 ms
81,024 KB
testcase_14 AC 89 ms
80,940 KB
testcase_15 AC 90 ms
80,896 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