結果

問題 No.414 衝動
ユーザー uafr_csuafr_cs
提出日時 2016-08-26 23:48:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 483 bytes
コンパイル時間 2,349 ms
コンパイル使用メモリ 76,788 KB
実行使用メモリ 42,788 KB
最終ジャッジ日時 2024-11-08 16:33:25
合計ジャッジ時間 6,500 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 159 ms
42,336 KB
testcase_06 AC 157 ms
42,260 KB
testcase_07 AC 156 ms
42,364 KB
testcase_08 AC 155 ms
42,404 KB
testcase_09 WA -
testcase_10 AC 159 ms
42,444 KB
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long M = sc.nextLong();
		
		/*
		for(long i = 2; i * i <= M; i++){
			if(M % i == 0){
				System.out.println(i + " " + (M / i));
				return;
			}
		}
		*/
		
		System.out.println("0" + Long.toString(1) + " " + "0" + Long.toString(M));
	}

}
0