結果
| 問題 | No.692 square1001 and Permutation 1 |
| コンテスト | |
| ユーザー |
Liny52551272
|
| 提出日時 | 2019-11-12 21:56:25 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
AC
|
| 実行時間 | 90 ms / 2,000 ms |
| + 154µs | |
| コード長 | 87 bytes |
| 記録 | |
| コンパイル時間 | 275 ms |
| コンパイル使用メモリ | 21,340 KB |
| 実行使用メモリ | 15,792 KB |
| 最終ジャッジ日時 | 2026-08-31 01:34:31 |
| 合計ジャッジ時間 | 2,199 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 |
ソースコード
n = int(input().strip())
if n == 1:
print('square1001')
else:
print('Petr')
Liny52551272