結果

問題 No.994 ばらばらコイン
ユーザー ixTL255
提出日時 2023-01-03 10:00:25
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 11,352 ms
コンパイル使用メモリ 378,760 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-27 01:45:52
合計ジャッジ時間 13,309 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn main() {
	let mut s = String::new();
	std::io::stdin().read_to_string(&mut s).ok();
	let mut s = s.trim().split_whitespace();
	let n:usize = s.next().unwrap().parse().unwrap();
	let k:usize = s.next().unwrap().parse().unwrap();
	
	if k > n { println!("{}", -1); }
	else {println!("{}", k - 1); }
}
0