結果
| 問題 | No.8029 素因数 |
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2025-01-24 20:01:55 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 747 bytes |
| コンパイル時間 | 13,478 ms |
| コンパイル使用メモリ | 386,836 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2025-01-24 20:02:16 |
| 合計ジャッジ時間 | 19,854 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 29 WA * 11 |
ソースコード
#[allow(unused_imports)]
use std::{
collections::*,
cmp::*,
mem::swap,
time::Instant,
io::{self, stdin, Read, read_to_string},
hash::Hash,
};
#[allow(unused_imports)]
use proconio::{input, input_interactive, marker::{*}};
#[allow(unused_imports)]
//use rand::{thread_rng, Rng, seq::SliceRandom};
#[allow(unused_imports)]
//use ac_library::{*};
#[allow(dead_code)]
const INF: i64 = 1<<61;
#[allow(dead_code)]
const MOD: i64 = 998244353;
#[allow(dead_code)]
const D: [(usize, usize); 4] = [(1, 0), (0, 1), (!0, 0), (0, !0)];
//use proconio::fastout;
//#[fastout]
fn main(){
input!{
m: usize,
}
let s = Instant::now();
while s.elapsed().as_secs_f64() < m as f64*0.005 + 0.01{}
println!("odd");
}