結果
問題 | No.276 連続する整数の和(1) |
ユーザー | tonyu0 |
提出日時 | 2020-04-29 15:49:25 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 568 bytes |
コンパイル時間 | 14,738 ms |
コンパイル使用メモリ | 377,592 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-05-06 13:11:09 |
合計ジャッジ時間 | 19,349 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
7,168 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 0 ms
5,376 KB |
testcase_03 | AC | 770 ms
5,376 KB |
testcase_04 | AC | 767 ms
5,376 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
use std::cmp::max; use std::io::*; fn main() { let mut s: String = String::new(); std::io::stdin().read_to_string(&mut s).ok(); let mut itr = s.trim().split_whitespace(); let n: u64 = itr.next().unwrap().parse().unwrap(); let m = n * (n + 1) / 2; let mut ans = 0; let mut i = 1; while i * i <= m { if m % i == 0 { if i <= n { ans = max(ans, i); } if m / i <= n { ans = max(ans, m / i) } } i += 1; } println!("{}", ans); }