結果
問題 | No.299 蟻本が読めない |
ユーザー | m0ntBL4Nc |
提出日時 | 2019-11-30 10:24:14 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 329 bytes |
コンパイル時間 | 12,826 ms |
コンパイル使用メモリ | 385,080 KB |
実行使用メモリ | 6,812 KB |
最終ジャッジ日時 | 2024-05-01 01:49:18 |
合計ジャッジ時間 | 12,939 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,812 KB |
testcase_02 | AC | 1 ms
6,812 KB |
testcase_03 | AC | 1 ms
6,812 KB |
ソースコード
fn getline() -> String { let mut __ret = String::new(); std::io::stdin().read_line(&mut __ret).ok(); return __ret; } fn main() { let page_num_first_edition: usize = 316; let n: usize = getline().trim().parse().unwrap(); let page_num = page_num_first_edition + (n-1) * 52; println!("{}", page_num); }