Submission #423431


Source Code Expand

import java.util.Scanner;

public class C_012 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int M = 2025 - N;

		for(int i=1;i<10;i++){
			for(int j=1;j<10;j++){
				if(i*j == M){
					System.out.println(i+"x"+j);
				}
			}
		}
	}

}

Submission Info

Submission Time
Task C - 九九足し算
User A1278162
Language JavaScript (Node.js 0.6.12)
Score 0
Code Size 318 Byte
Status RE
Exec Time 299 ms
Memory 11592 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
RE × 18
Set Name Test Cases
All test_1953.txt, test_1971.txt, test_1977.txt, test_1983.txt, test_1989.txt, test_1990.txt, test_1993.txt, test_1995.txt, test_1997.txt, test_1998.txt, test_2001.txt, test_2009.txt, test_2013.txt, test_2017.txt, test_2019.txt, test_2020.txt, test_2022.txt, test_2024.txt
Case Name Status Exec Time Memory
sample_01.txt RE 299 ms 11592 KB
sample_02.txt RE 144 ms 11340 KB
test_1953.txt RE 146 ms 11464 KB
test_1971.txt RE 146 ms 11336 KB
test_1977.txt RE 148 ms 11336 KB
test_1983.txt RE 143 ms 11464 KB
test_1989.txt RE 147 ms 11468 KB
test_1990.txt RE 147 ms 11464 KB
test_1993.txt RE 148 ms 11592 KB
test_1995.txt RE 155 ms 11468 KB
test_1997.txt RE 149 ms 11464 KB
test_1998.txt RE 143 ms 11336 KB
test_2001.txt RE 142 ms 11340 KB
test_2009.txt RE 146 ms 11464 KB
test_2013.txt RE 145 ms 11340 KB
test_2017.txt RE 145 ms 11436 KB
test_2019.txt RE 158 ms 11336 KB
test_2020.txt RE 149 ms 11452 KB
test_2022.txt RE 145 ms 11336 KB
test_2024.txt RE 145 ms 11464 KB