結果
| 問題 | No.1232 2^x = x |
| コンテスト | |
| ユーザー |
tzyvrn
|
| 提出日時 | 2020-09-19 14:03:42 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 918 bytes |
| コンパイル時間 | 11,800 ms |
| コンパイル使用メモリ | 408,656 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-23 13:59:47 |
| 合計ジャッジ時間 | 12,696 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 3 |
コンパイルメッセージ
warning: use of deprecated method `core::str::<impl str>::trim_right`: superseded by `trim_end` --> src/main.rs:8:23 | 8 | let s = s.trim_right(); | ^^^^^^^^^^ ... 29 | let n = getl!(usize); | ------------ in this macro invocation | = note: `#[warn(deprecated)]` on by default = note: this warning originates in the macro `getl` (in Nightly builds, run with -Z macro-backtrace for more info) help: replace the use of the deprecated method | 8 | let s = s.trim_end(); | ~~~~~~~~ warning: use of deprecated method `core::str::<impl str>::trim_right`: superseded by `trim_end` --> src/main.rs:8:23 | 8 | let s = s.trim_right(); | ^^^^^^^^^^ ... 32 | p.push(getl!(i64)); | ---------- in this macro invocation | = note: this warning originates in the macro `getl` (in Nightly builds, run with -Z macro-backtrace for more info) help: replace the use of the deprecated method | 8 | let s = s.trim_end(); | ~~~~~~~~
ソースコード
//{{{
#[allow(unused_macros)]
macro_rules! getl {
( $( $t:ty ),* ) => {
{
let mut s = String::new();
std::io::stdin().read_line(&mut s).unwrap();
let s = s.trim_right();
let mut ws = s.split_whitespace();
($(ws.next().unwrap().parse::<$t>().unwrap()),*)
}
};
}
#[allow(unused_macros)]
macro_rules! getl_vec {
( $t:ty ) => {{
let mut s = String::new();
std::io::stdin().read_line(&mut s).unwrap();
let s = s.trim_right();
s.split_whitespace()
.map(|x| x.parse().unwrap())
.collect::<Vec<$t>>()
}};
}
//}}}
fn main() {
let n = getl!(usize);
let mut p = vec![];
for _ in 0..n {
p.push(getl!(i64));
}
for p in p {
if p == 2 {
println!("2");
} else {
println!("{}", (p - 1) * (p - 1));
}
}
}
tzyvrn