QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#298374#6244. سینما بررهmahdimalverdiRE 75ms37616kbJava11287b2024-01-06 04:38:572024-01-06 04:38:58

Judging History

你现在查看的是最新测评结果

  • [2024-01-06 04:38:58]
  • 评测
  • 测评结果:RE
  • 用时:75ms
  • 内存:37616kb
  • [2024-01-06 04:38:57]
  • 提交

answer

import java.util.Scanner;

class Codechef {
    public static void main(String[] args) throws java.lang.Exception {
        Scanner sc = new Scanner(System.in);

        long a = sc.nextInt();
        long b = sc.nextInt();

        System.out.println(Math.min(a, b));
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 75ms
memory: 37616kb

input:

6 12

output:

6

result:

ok single line: '6'

Test #2:

score: 0
Accepted
time: 68ms
memory: 37564kb

input:

12 8

output:

8

result:

ok single line: '8'

Test #3:

score: 0
Accepted
time: 66ms
memory: 37420kb

input:

15 15

output:

15

result:

ok single line: '15'

Test #4:

score: -100
Runtime Error

input:

100000000000000000 1000000000000000000


output:


result: