結果
問題 |
No.2781 A%B問題
|
ユーザー |
|
提出日時 | 2024-06-14 21:22:20 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 305 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 81,664 KB |
実行使用メモリ | 55,168 KB |
最終ジャッジ日時 | 2024-06-14 21:22:23 |
合計ジャッジ時間 | 1,817 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 16 WA * 4 |
ソースコード
import sys, time, random from collections import deque, Counter, defaultdict input = lambda: sys.stdin.readline().rstrip() ii = lambda: int(input()) mi = lambda: map(int, input().split()) li = lambda: list(mi()) inf = 2 ** 61 - 1 mod = 998244353 a, b = mi() if b < 0: a *= -1 b *= -1 print(a % b)