結果
| 問題 | No.692 square1001 and Permutation 1 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-02-08 16:02:36 |
| 言語 | Rust (1.92.0 + proconio + num + itertools) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 568 bytes |
| 記録 | |
| コンパイル時間 | 1,088 ms |
| コンパイル使用メモリ | 194,044 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2026-02-08 16:02:39 |
| 合計ジャッジ時間 | 2,593 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 |
ソースコード
fn main() {
let stdin = std::io::read_to_string(std::io::stdin()).unwrap();
let mut stdin = stdin.split_ascii_whitespace();
let n: String = stdin.next().unwrap().parse().unwrap();
use std::io::Write;
let mut out = std::io::BufWriter::new(std::io::stdout().lock());
out.write_all(output(solve(n)).as_bytes()).unwrap();
}
fn solve(n: String) -> bool {
match &n[..] {
"1" => false,
_ => true,
}
}
fn output(ans: bool) -> &'static str {
match ans {
true => "Petr\n",
false => "square1001\n",
}
}