結果
問題 | No.1981 [Cherry 4th Tune N] アルゴリズムが破滅する例 |
ユーザー | vwxyz |
提出日時 | 2023-07-17 13:03:03 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 974 bytes |
コンパイル時間 | 221 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-09-17 21:25:33 |
合計ジャッジ時間 | 6,755 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 40 ms
11,904 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 40 ms
11,904 KB |
testcase_08 | AC | 40 ms
11,904 KB |
testcase_09 | AC | 39 ms
11,904 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 40 ms
11,904 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 41 ms
11,904 KB |
testcase_17 | AC | 40 ms
11,776 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 41 ms
11,776 KB |
testcase_23 | AC | 41 ms
11,904 KB |
testcase_24 | AC | 41 ms
11,904 KB |
testcase_25 | AC | 40 ms
11,776 KB |
testcase_26 | WA | - |
testcase_27 | AC | 40 ms
11,904 KB |
testcase_28 | AC | 40 ms
11,904 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 41 ms
12,032 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 41 ms
11,904 KB |
testcase_39 | AC | 41 ms
11,904 KB |
testcase_40 | AC | 41 ms
11,904 KB |
testcase_41 | AC | 38 ms
11,904 KB |
testcase_42 | AC | 39 ms
11,776 KB |
testcase_43 | AC | 39 ms
11,904 KB |
testcase_44 | WA | - |
testcase_45 | AC | 40 ms
11,904 KB |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
ソースコード
import bisect import copy import decimal import fractions import heapq import itertools import math import random import sys import time from collections import Counter,deque,defaultdict from functools import lru_cache,reduce from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max def _heappush_max(heap,item): heap.append(item) heapq._siftdown_max(heap, 0, len(heap)-1) def _heappushpop_max(heap, item): if heap and item < heap[0]: item, heap[0] = heap[0], item heapq._siftup_max(heap, 0) return item from math import gcd as GCD read=sys.stdin.read readline=sys.stdin.readline readlines=sys.stdin.readlines write=sys.stdout.write N,K=map(int,readline().split()) if N>K*2: print(-1) else: ans_lst=[] for i in range(K): ans_lst.append((i,N-1-i)) for i in range(N): if i*2!=N-1: ans_lst.append((i,i)) print(len(ans_lst)) for a,b in ans_lst: print((a+1,b+1))