結果
| 問題 | No.175 simpleDNA |
| コンテスト | |
| ユーザー |
cra77756176
|
| 提出日時 | 2022-12-06 23:29:31 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 1,000 ms |
| コード長 | 325 bytes |
| 記録 | |
| コンパイル時間 | 13,051 ms |
| コンパイル使用メモリ | 378,116 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-13 10:49:02 |
| 合計ジャッジ時間 | 13,748 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 |
ソースコード
fn main() {
let mut input = String::new();
std::io::Read::read_to_string(&mut std::io::stdin(), &mut input).ok();
let input: Vec<u32> = input
.split_whitespace()
.take(2)
.map(|n| n.parse().unwrap())
.collect();
println!("{}", u64::from(input[1]) * 2u64.pow(input[0] - 3));
}
cra77756176