結果

問題 No.2781 A%B問題
ユーザー ArleenArleen
提出日時 2024-06-14 21:34:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 53,760 KB
最終ジャッジ日時 2024-06-14 21:34:10
合計ジャッジ時間 1,906 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,760 KB
testcase_01 AC 39 ms
53,760 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 AC 39 ms
53,632 KB
testcase_04 AC 39 ms
53,376 KB
testcase_05 AC 38 ms
53,504 KB
testcase_06 AC 40 ms
53,760 KB
testcase_07 AC 38 ms
53,632 KB
testcase_08 AC 38 ms
53,504 KB
testcase_09 AC 39 ms
53,248 KB
testcase_10 AC 39 ms
53,248 KB
testcase_11 AC 38 ms
53,632 KB
testcase_12 AC 42 ms
53,120 KB
testcase_13 AC 39 ms
53,504 KB
testcase_14 AC 40 ms
53,248 KB
testcase_15 AC 40 ms
53,632 KB
testcase_16 AC 38 ms
53,760 KB
testcase_17 AC 40 ms
53,248 KB
testcase_18 AC 42 ms
53,248 KB
testcase_19 AC 41 ms
53,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 2個の整数A, Bが与えられる(B != 0)
# AをBで割った余りを求めよ
#
# -100 <= A, B <= 100
# B != 0

import sys
import itertools
import time
from math import radians, sin, cos, tan, sqrt
from collections import deque

def input():
    return sys.stdin.readline().replace('\n','')
sys.setrecursionlimit(1000000)
md1 = 998244353
md2 = 10 ** 9 + 7

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

r = A % B

if r < 0:
    while not (0 <= r and r < abs(B)):
        r += abs(B)
else:
    if 0 <= r and abs(B) <= r:
        while not(0 <= r and r < abs(B)):
            r -= abs(B)

print(r)
0