結果

問題 No.634 硬貨の枚数1
ユーザー ixTL255ixTL255
提出日時 2023-01-02 21:50:53
言語 Rust
(1.77.0 + proconio)
結果
TLE  
実行時間 -
コード長 439 bytes
コンパイル時間 12,983 ms
コンパイル使用メモリ 383,444 KB
実行使用メモリ 97,664 KB
最終ジャッジ日時 2024-11-27 01:17:55
合計ジャッジ時間 155,065 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,640 KB
testcase_01 AC 1 ms
10,496 KB
testcase_02 AC 82 ms
10,496 KB
testcase_03 AC 22 ms
73,088 KB
testcase_04 AC 14 ms
10,496 KB
testcase_05 AC 2 ms
35,712 KB
testcase_06 AC 25 ms
10,496 KB
testcase_07 AC 9 ms
42,752 KB
testcase_08 AC 4 ms
10,496 KB
testcase_09 AC 34 ms
13,640 KB
testcase_10 AC 23 ms
10,496 KB
testcase_11 AC 5 ms
66,304 KB
testcase_12 AC 20 ms
10,496 KB
testcase_13 AC 3 ms
77,056 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 25 ms
10,496 KB
testcase_25 AC 2 ms
52,352 KB
testcase_26 AC 24 ms
10,496 KB
testcase_27 AC 7 ms
38,400 KB
testcase_28 AC 34 ms
10,496 KB
testcase_29 AC 37 ms
6,820 KB
testcase_30 AC 24 ms
10,496 KB
testcase_31 AC 29 ms
70,400 KB
testcase_32 AC 2 ms
10,496 KB
testcase_33 AC 9 ms
50,048 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 1 ms
10,624 KB
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 AC 1 ms
10,624 KB
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 AC 1 ms
10,624 KB
testcase_53 AC 1 ms
84,224 KB
testcase_54 AC 1 ms
10,624 KB
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 AC 101 ms
5,248 KB
testcase_77 AC 13 ms
97,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
	let mut n = String::new();
	std::io::stdin().read_line(&mut n).ok();
	let n: usize = n.trim().parse().unwrap();
	
	let mut t: Vec<usize> = vec![1];
	
	for i in 2.. {
		if i < n { t.push(t[i - 2] + i); }
		else { break; }
	}
	
	let mut ans = 3;
	if t.iter().any(|e| e == &n) {
		println!("{}", 1);
		return;
	}
	for i in 0..t.len() / 2 + 1 {
		if t.iter().any(|e| e == &(n - t[i])) {
			ans = 2;
		}
	}

	println!("{}", ans);
}
0