結果

問題 No.692 square1001 and Permutation 1
ユーザー pluto77pluto77
提出日時 2018-06-09 09:08:34
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 79 bytes
コンパイル時間 672 ms
コンパイル使用メモリ 6,596 KB
実行使用メモリ 6,072 KB
最終ジャッジ日時 2023-09-13 01:40:32
合計ジャッジ時間 1,372 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,008 KB
testcase_01 WA -
testcase_02 AC 11 ms
5,996 KB
testcase_03 AC 11 ms
6,032 KB
testcase_04 AC 11 ms
5,956 KB
testcase_05 WA -
testcase_06 AC 11 ms
6,012 KB
testcase_07 AC 11 ms
5,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki692

n=int(raw_input())
if n==1:
 print 'squaire1001'
else:
 print 'Petr'
0