結果

問題 No.1926 Sequence of Remainders
ユーザー tassei903tassei903
提出日時 2022-05-06 21:39:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 77,220 KB
最終ジャッジ日時 2024-07-05 22:52:13
合計ジャッジ時間 7,140 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,564 KB
testcase_01 AC 105 ms
77,116 KB
testcase_02 AC 103 ms
77,200 KB
testcase_03 AC 103 ms
76,948 KB
testcase_04 AC 106 ms
77,220 KB
testcase_05 AC 105 ms
76,896 KB
testcase_06 AC 117 ms
76,300 KB
testcase_07 AC 121 ms
76,804 KB
testcase_08 AC 120 ms
76,816 KB
testcase_09 AC 118 ms
76,036 KB
testcase_10 AC 116 ms
76,364 KB
testcase_11 AC 123 ms
76,460 KB
testcase_12 AC 122 ms
76,280 KB
testcase_13 AC 116 ms
76,352 KB
testcase_14 AC 117 ms
76,316 KB
testcase_15 AC 116 ms
76,332 KB
testcase_16 AC 117 ms
76,652 KB
testcase_17 AC 118 ms
76,260 KB
testcase_18 AC 123 ms
76,744 KB
testcase_19 AC 117 ms
76,240 KB
testcase_20 AC 128 ms
76,452 KB
testcase_21 AC 120 ms
76,240 KB
testcase_22 AC 115 ms
76,796 KB
testcase_23 AC 116 ms
76,860 KB
testcase_24 AC 119 ms
76,364 KB
testcase_25 AC 118 ms
76,356 KB
testcase_26 AC 118 ms
76,220 KB
testcase_27 AC 116 ms
76,128 KB
testcase_28 AC 118 ms
76,132 KB
testcase_29 AC 119 ms
76,192 KB
testcase_30 AC 123 ms
76,140 KB
testcase_31 AC 118 ms
76,268 KB
testcase_32 AC 124 ms
76,580 KB
testcase_33 AC 120 ms
76,492 KB
testcase_34 AC 121 ms
76,320 KB
testcase_35 AC 116 ms
76,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

for i in range(ni()):
    n,m,k= na()
    z = m-n
    y = k
    while m >= z:
        y %= m
        m = y
    print(y)
    """a = m%k
    for i in range(n):
        a = a % (m-i-1)
    #print(a)
    if a != y:
        print(n,m,k)
"""
0