結果

問題 No.2781 A%B問題
ユーザー tipstar0125tipstar0125
提出日時 2024-06-14 21:27:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 167 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 59,044 KB
最終ジャッジ日時 2024-06-14 21:27:34
合計ジャッジ時間 1,897 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 41 ms
52,896 KB
testcase_02 AC 38 ms
52,816 KB
testcase_03 AC 39 ms
52,488 KB
testcase_04 AC 40 ms
51,828 KB
testcase_05 WA -
testcase_06 AC 38 ms
53,308 KB
testcase_07 WA -
testcase_08 AC 38 ms
52,364 KB
testcase_09 AC 41 ms
59,000 KB
testcase_10 AC 41 ms
56,928 KB
testcase_11 AC 39 ms
51,876 KB
testcase_12 AC 38 ms
52,732 KB
testcase_13 AC 39 ms
52,772 KB
testcase_14 AC 39 ms
52,628 KB
testcase_15 AC 41 ms
58,864 KB
testcase_16 AC 41 ms
58,440 KB
testcase_17 AC 42 ms
58,992 KB
testcase_18 AC 42 ms
57,860 KB
testcase_19 AC 43 ms
59,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B=list(map(int,input().split()))

for q in range(-int(1e2), int(1e2)+1):
    for r in range(abs(B)+1):
        if A==B*q+r:
            print(r)
            exit(0)
0