結果

問題 No.3078 Very Simple Traveling Salesman Problem
ユーザー ks2mks2m
提出日時 2021-04-01 22:47:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 2,133 ms
コンパイル使用メモリ 71,196 KB
実行使用メモリ 56,260 KB
最終ジャッジ日時 2023-08-23 06:35:08
合計ジャッジ時間 4,268 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
55,884 KB
testcase_01 AC 123 ms
56,060 KB
testcase_02 AC 124 ms
56,120 KB
testcase_03 AC 123 ms
55,936 KB
testcase_04 AC 123 ms
56,144 KB
testcase_05 AC 123 ms
56,260 KB
testcase_06 AC 122 ms
55,796 KB
testcase_07 AC 123 ms
56,140 KB
testcase_08 AC 122 ms
55,496 KB
testcase_09 AC 122 ms
55,924 KB
testcase_10 AC 122 ms
55,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();

		System.out.println(n);
	}
}
0