結果

問題 No.2781 A%B問題
ユーザー 紅鮭紅鮭
提出日時 2024-06-14 21:57:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 47 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 53,448 KB
最終ジャッジ日時 2024-06-14 21:58:01
合計ジャッジ時間 1,490 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,164 KB
testcase_01 WA -
testcase_02 AC 32 ms
52,620 KB
testcase_03 WA -
testcase_04 AC 32 ms
52,300 KB
testcase_05 AC 33 ms
53,300 KB
testcase_06 AC 36 ms
52,204 KB
testcase_07 AC 35 ms
52,240 KB
testcase_08 AC 35 ms
51,948 KB
testcase_09 AC 33 ms
52,488 KB
testcase_10 WA -
testcase_11 AC 34 ms
51,908 KB
testcase_12 WA -
testcase_13 AC 32 ms
52,420 KB
testcase_14 AC 33 ms
52,572 KB
testcase_15 AC 32 ms
52,828 KB
testcase_16 WA -
testcase_17 AC 32 ms
51,676 KB
testcase_18 WA -
testcase_19 AC 36 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
ans=a%b
print(ans)
0