結果

問題 No.692 square1001 and Permutation 1
ユーザー Pachicobue
提出日時 2018-06-09 04:18:22
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 134 bytes
コンパイル時間 5,281 ms
コンパイル使用メモリ 65,368 KB
最終ジャッジ日時 2025-01-05 11:40:25
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 1 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main()
{
    int N;cin >>N;
    cout << (N>-1?"square1001":"Petr")<<endl;
    return 0;
}
0