結果

問題 No.148 試験監督(3)
ユーザー realDivineJKrealDivineJK
提出日時 2020-06-05 00:43:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 389 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 26,880 KB
最終ジャッジ日時 2024-11-30 21:49:00
合計ジャッジ時間 15,432 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
mod = int(1e9) + 7
for _ in range(T):
    C, P = input().split()
    if len(P) >= 11:
        print(0)
    else:
        P = int(P)
        C = int(C) % mod
        if (C - P - 1) // mod != (C - 2*P) // mod:
            print(0)
        else:
            X = 1
            for i in range(P):
                X *= C - P - i - 1
                X %= mod
            print(X)
0