結果

問題 No.51 やる気の問題
ユーザー ixTL255
提出日時 2023-01-06 23:23:55
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 339 bytes
コンパイル時間 13,000 ms
コンパイル使用メモリ 378,716 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-30 20:15:36
合計ジャッジ時間 14,205 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn main() {
	let mut wd = String::new();
	std::io::stdin().read_to_string(&mut wd).ok();
	let mut itr = wd.trim().split_whitespace();
	let mut w: usize = itr.next().unwrap().parse().unwrap();
	let d: usize = itr.next().unwrap().parse().unwrap();

	for i in (2..=d).rev() {
		w -= w / (i * i);
	}
	
	println!("{}", w);
}
0