結果

問題 No.3017 エスパー
ユーザー yagi2yagi2
提出日時 2017-04-25 18:18:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 2,256 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-09-13 09:05:11
合計ジャッジ時間 5,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,876 KB
testcase_01 AC 127 ms
53,892 KB
testcase_02 AC 126 ms
53,956 KB
testcase_03 AC 127 ms
54,148 KB
testcase_04 AC 126 ms
53,988 KB
testcase_05 AC 124 ms
53,744 KB
testcase_06 AC 123 ms
53,856 KB
testcase_07 AC 125 ms
53,776 KB
testcase_08 AC 123 ms
54,044 KB
testcase_09 AC 125 ms
53,868 KB
testcase_10 AC 122 ms
54,044 KB
testcase_11 AC 124 ms
53,808 KB
testcase_12 AC 121 ms
54,140 KB
testcase_13 AC 123 ms
53,896 KB
testcase_14 AC 123 ms
53,896 KB
testcase_15 AC 124 ms
54,008 KB
testcase_16 AC 125 ms
54,116 KB
testcase_17 AC 112 ms
52,804 KB
testcase_18 AC 128 ms
54,384 KB
testcase_19 AC 124 ms
53,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        Long S = Long.parseLong(sc.next());
        Long K = Long.parseLong(sc.next());
        System.out.println(S%K);
    }
}
0