結果

問題 No.994 ばらばらコイン
ユーザー tcltktcltk
提出日時 2021-01-21 21:19:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 713 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 93,312 KB
最終ジャッジ日時 2024-06-07 04:30:59
合計ジャッジ時間 5,735 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
88,960 KB
testcase_01 AC 142 ms
88,960 KB
testcase_02 AC 182 ms
92,928 KB
testcase_03 AC 173 ms
92,928 KB
testcase_04 AC 180 ms
92,544 KB
testcase_05 AC 162 ms
91,008 KB
testcase_06 AC 179 ms
92,800 KB
testcase_07 AC 181 ms
92,544 KB
testcase_08 AC 167 ms
91,392 KB
testcase_09 AC 180 ms
92,544 KB
testcase_10 AC 173 ms
91,264 KB
testcase_11 AC 174 ms
91,392 KB
testcase_12 AC 176 ms
93,312 KB
testcase_13 AC 143 ms
88,960 KB
testcase_14 AC 141 ms
88,960 KB
testcase_15 AC 145 ms
88,960 KB
testcase_16 AC 144 ms
88,960 KB
testcase_17 AC 138 ms
88,832 KB
testcase_18 AC 143 ms
88,832 KB
testcase_19 AC 139 ms
88,960 KB
testcase_20 AC 139 ms
88,704 KB
testcase_21 AC 142 ms
88,960 KB
testcase_22 AC 140 ms
88,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    N, K = map(int, input().split())
    a = [None for _ in range(N - 1)]
    b = [None for _ in range(N - 1)]
    for i in range(N - 1):
        a[i], b[i] = map(int, input().split())
    
    if N < K:
        print(-1)
    else:
        print(K-1)

if __name__ == '__main__':
    main()
0