QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#298375#6244. سینما بررهmahdimalverdiAC ✓77ms37780kbJava11289b2024-01-06 04:39:282024-01-06 04:39:28

Judging History

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

  • [2024-01-06 04:39:28]
  • 评测
  • 测评结果:AC
  • 用时:77ms
  • 内存:37780kb
  • [2024-01-06 04:39:28]
  • 提交

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.nextLong();
        long b = sc.nextLong();

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

详细

Test #1:

score: 100
Accepted
time: 62ms
memory: 37780kb

input:

6 12

output:

6

result:

ok single line: '6'

Test #2:

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

input:

12 8

output:

8

result:

ok single line: '8'

Test #3:

score: 0
Accepted
time: 63ms
memory: 37300kb

input:

15 15

output:

15

result:

ok single line: '15'

Test #4:

score: 0
Accepted
time: 71ms
memory: 37776kb

input:

100000000000000000 1000000000000000000


output:

100000000000000000

result:

ok single line: '100000000000000000'

Test #5:

score: 0
Accepted
time: 77ms
memory: 37432kb

input:

123456987654321 123456789123456789

output:

123456987654321

result:

ok single line: '123456987654321'