結果

問題 No.1842 Decimal Point
ユーザー otoshigootoshigo
提出日時 2022-02-18 22:25:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,112 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 76,548 KB
最終ジャッジ日時 2024-06-29 09:17:05
合計ジャッジ時間 3,800 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,400 KB
testcase_01 AC 390 ms
76,548 KB
testcase_02 AC 1,112 ms
76,132 KB
testcase_03 AC 766 ms
76,488 KB
testcase_04 AC 741 ms
76,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    a,b,c = map(int,input().split())
    m = a*pow(10,c,b)%b;
    for i in range(10):
        if (a*pow(10,c,10*b)-m-b*i)%(10*b) == 0:
            print(i)
0