QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#839038#1. I/O Testntprc0x0 0ms0kbRust576b2025-01-01 10:44:562025-01-01 10:44:57

Judging History

你现在查看的是最新测评结果

  • [2025-01-01 10:44:57]
  • 评测
  • 测评结果:0
  • 用时:0ms
  • 内存:0kb
  • [2025-01-01 10:44:56]
  • 提交

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

output:


result: