QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#828473#6244. سینما بررهFarazGolshahiAC ✓103ms55268kbJava11281b2024-12-23 16:54:172024-12-23 16:54:22

Judging History

This is the latest submission verdict.

  • [2024-12-23 16:54:22]
  • Judged
  • Verdict: AC
  • Time: 103ms
  • Memory: 55268kb
  • [2024-12-23 16:54:17]
  • Submitted

answer

import java.util.Scanner;

public class Main {

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

        long a = scanner.nextLong();
        long b = scanner.nextLong();

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

詳細信息

Test #1:

score: 100
Accepted
time: 103ms
memory: 53168kb

input:

6 12

output:

6

result:

ok single line: '6'

Test #2:

score: 0
Accepted
time: 90ms
memory: 53376kb

input:

12 8

output:

8

result:

ok single line: '8'

Test #3:

score: 0
Accepted
time: 91ms
memory: 55268kb

input:

15 15

output:

15

result:

ok single line: '15'

Test #4:

score: 0
Accepted
time: 97ms
memory: 55220kb

input:

100000000000000000 1000000000000000000


output:

100000000000000000

result:

ok single line: '100000000000000000'

Test #5:

score: 0
Accepted
time: 99ms
memory: 53024kb

input:

123456987654321 123456789123456789

output:

123456987654321

result:

ok single line: '123456987654321'