結果
| 問題 |
No.692 square1001 and Permutation 1
|
| コンテスト | |
| ユーザー |
yuasa0000
|
| 提出日時 | 2019-03-25 15:58:21 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 213 bytes |
| コンパイル時間 | 648 ms |
| コンパイル使用メモリ | 57,908 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-08 09:26:24 |
| 合計ジャッジ時間 | 1,229 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 3 WA * 2 |
ソースコード
#include <iostream>
#include "math.h"
#include <string>
using namespace std;
int main() {
long long n;
cin >> n;
if (n % 2 == 0)cout << "Petr" << endl;
if (n % 2 == 1)cout << "square1001" << endl;
return 0;
}
yuasa0000