結果

問題 No.692 square1001 and Permutation 1
ユーザー kpinkcatkpinkcat
提出日時 2023-07-30 16:50:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 289 bytes
コンパイル時間 1,158 ms
コンパイル使用メモリ 103,696 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-17 17:57:07
合計ジャッジ時間 1,704 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<string>
#include<algorithm>
#include<cctype>
#include<set>
#include<bitset>
#include<math.h>
#include<map>
#include<queue>
#include<iomanip>
using namespace std;

int main(){
    int n;
    cin >> n;
    cout << ((n == 1) ? "square001" : "Petr") << endl;    
}
0