結果

問題 No.692 square1001 and Permutation 1
ユーザー Mcpu3Mcpu3
提出日時 2018-06-21 23:32:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 2,434 ms
コンパイル使用メモリ 71,092 KB
実行使用メモリ 56,072 KB
最終ジャッジ日時 2023-09-13 07:44:19
合計ジャッジ時間 3,426 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
55,816 KB
testcase_01 AC 120 ms
55,732 KB
testcase_02 AC 119 ms
55,692 KB
testcase_03 AC 121 ms
55,792 KB
testcase_04 AC 121 ms
55,980 KB
testcase_05 AC 120 ms
55,640 KB
testcase_06 AC 124 ms
56,072 KB
testcase_07 AC 120 ms
55,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no692{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int n;
		n=stdIn.nextInt();
		if(n-1==0) System.out.print("square1001");
		else System.out.print("Petr");
	}
}
0