Submission #54772985


Source Code Expand

import 'dart:io';

void main() {
  final firstLine = stdin.readLineSync()!;
  final secondLine = stdin.readLineSync()!;
  final thirdLine = stdin.readLineSync()!;

  final firstNumber = int.parse(firstLine);
  final secondLineParts = secondLine.split(' ');
  final secondNumber = int.parse(secondLineParts[0]);
  final thirdNumber = int.parse(secondLineParts[1]);
  final sum = firstNumber + secondNumber + thirdNumber;

  print('${sum} ${thirdLine}');
}

Submission Info

Submission Time
Task PracticeA - Welcome to AtCoder
User mikecat
Language Dart (Dart 3.0.5)
Score 100
Code Size 470 Byte
Status AC
Exec Time 5 ms
Memory 10980 KiB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 7
Set Name Test Cases
All 00_rnd_01.txt, 00_rnd_02.txt, 00_rnd_03.txt, 00_rnd_04.txt, 00_rnd_05.txt, 00_sample_1.txt, 00_sample_2.txt
Case Name Status Exec Time Memory
00_rnd_01.txt AC 5 ms 10844 KiB
00_rnd_02.txt AC 5 ms 10604 KiB
00_rnd_03.txt AC 5 ms 10576 KiB
00_rnd_04.txt AC 5 ms 10980 KiB
00_rnd_05.txt AC 4 ms 10768 KiB
00_sample_1.txt AC 4 ms 10668 KiB
00_sample_2.txt AC 4 ms 10908 KiB