/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 90ms 11.734 MiB
#2 Accepted 90ms 10.906 MiB
#3 Accepted 92ms 11.043 MiB
#4 Accepted 89ms 11.102 MiB

Code

import java.util.*;

public class Main{
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N,K;
        N = sc.nextInt();
        K = sc.nextInt();

        int rst = N-K;

        System.out.println(rst);
    }
}

Information

Submit By
Type
Submission
Problem
P1226 Event Registration
Contest
LUCC Presents Kick & Code Intra LU Programming Contest
Language
Java 8 (OpenJDK 1.8.0_422)
Submit At
2025-09-01 05:21:32
Judged At
2025-09-01 05:21:32
Judged By
Score
100
Total Time
92ms
Peak Memory
11.734 MiB