QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#839038 | #1. I/O Test | ntprc0x | 0 | 0ms | 0kb | Rust | 576b | 2025-01-01 10:44:56 | 2025-01-01 10:44:57 |
config.txt
10 10
input_test
fn main() {
let mut it = std::io::stdin().lines();
let n = it.next().unwrap().unwrap().trim().parse::<usize>().unwrap();
let data = it.next().unwrap().unwrap().split_whitespace().take(n).map(|x| x.parse::<usize>().unwrap()).collect::<Vec<_>>();
let sum = data.iter().sum::<usize>();
println!("{}", sum);
}
output_test
use std::iter;
fn main() {
let mut it = std::io::stdin().lines();
let n = it.next().unwrap().unwrap().trim().parse::<usize>().unwrap();
println!("{}", iter::repeat_n("100000000", n).collect::<Vec<_>>().join(" "));
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
input_test Judgement Failed
Test #1:
score: 0
input_test Judgement Failed
input:
10 309625455 361934015 785711526 773955680 609547936 412966552 505000003 881021074 467010939 985956185
output:
result:
Subtask #2:
score: 0
output_test Judgement Failed
Test #2:
score: 0
output_test Judgement Failed
input:
10