結果

問題 No.8017 エスパー
ユーザー カフェオレ07カフェオレ07
提出日時 2022-07-06 19:16:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 3,142 ms
コンパイル使用メモリ 73,832 KB
実行使用メモリ 44,800 KB
最終ジャッジ日時 2024-12-23 02:45:42
合計ジャッジ時間 6,430 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
42,972 KB
testcase_01 AC 137 ms
43,008 KB
testcase_02 AC 141 ms
44,456 KB
testcase_03 AC 138 ms
44,196 KB
testcase_04 AC 136 ms
44,596 KB
testcase_05 AC 134 ms
44,196 KB
testcase_06 AC 122 ms
43,284 KB
testcase_07 AC 124 ms
43,288 KB
testcase_08 AC 141 ms
44,612 KB
testcase_09 AC 135 ms
43,136 KB
testcase_10 AC 137 ms
44,332 KB
testcase_11 AC 124 ms
41,936 KB
testcase_12 AC 140 ms
44,800 KB
testcase_13 AC 121 ms
43,236 KB
testcase_14 AC 138 ms
44,324 KB
testcase_15 AC 135 ms
44,328 KB
testcase_16 AC 137 ms
44,572 KB
testcase_17 AC 140 ms
44,588 KB
testcase_18 AC 138 ms
44,552 KB
testcase_19 AC 124 ms
43,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int s=sc.nextInt();
		int k=sc.nextInt();
		System.out.println(s%k);
	}
}
0