結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,424 KB
testcase_01 AC 37 ms
52,976 KB
testcase_02 AC 37 ms
51,688 KB
testcase_03 AC 37 ms
51,948 KB
testcase_04 AC 37 ms
52,028 KB
testcase_05 WA -
testcase_06 AC 38 ms
52,028 KB
testcase_07 WA -
testcase_08 AC 39 ms
52,272 KB
testcase_09 WA -
testcase_10 AC 41 ms
58,788 KB
testcase_11 AC 37 ms
52,576 KB
testcase_12 AC 38 ms
53,616 KB
testcase_13 AC 38 ms
53,604 KB
testcase_14 AC 38 ms
52,184 KB
testcase_15 AC 41 ms
57,916 KB
testcase_16 AC 44 ms
58,048 KB
testcase_17 AC 41 ms
57,940 KB
testcase_18 AC 41 ms
57,448 KB
testcase_19 AC 41 ms
58,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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