結果

問題 No.692 square1001 and Permutation 1
ユーザー square1001square1001
提出日時 2018-02-05 21:03:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 1,884 ms
コンパイル使用メモリ 98,952 KB
実行使用メモリ 22,760 KB
最終ジャッジ日時 2023-09-22 15:52:24
合計ジャッジ時間 2,901 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
18,616 KB
testcase_01 AC 52 ms
18,736 KB
testcase_02 AC 52 ms
22,684 KB
testcase_03 AC 53 ms
22,676 KB
testcase_04 AC 52 ms
20,756 KB
testcase_05 AC 53 ms
20,732 KB
testcase_06 AC 53 ms
22,760 KB
testcase_07 AC 52 ms
20,864 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
public class Solver {
	public static void Main() {
		int n = int.Parse(Console.ReadLine());
		if(n == 1) {
			Console.WriteLine("square1001");
		}
		else {
			Console.WriteLine("Petr");
		}
	}
}
0