Submission #2841110


Source Code Expand

import strutils, algorithm

type
  str = string
let
  S = readLine stdin
var
  s = ""
  flg = false
  dic = newSeq[str]()

proc inc(dic: var seq[str], s: str) =
  if s != "" and s notin dic:
    add dic, s

for c in S & "E":
  if flg:
    case c
    of '@', ' ', 'E':
      inc dic, s
      s = ""

      if c == ' ':
        flg = false
    else:
      add s, c
  else:
    if c == '@':
      flg = true

if dic.len != 0:
  echo sorted(dic, cmp).join("\n")

Submission Info

Submission Time
Task C - 次世代SNS
User ToshiroYanagi
Language Nim (0.13.0)
Score 100
Code Size 490 Byte
Status AC
Exec Time 1 ms
Memory 256 KB

Compile Error

Hint: system [Processing]
Hint: Main [Processing]
Hint: strutils [Processing]
Hint: parseutils [Processing]
Hint: algorithm [Processing]
Hint:  [Link]
Hint: operation successful (12489 lines compiled; 5.589 sec total; 13.138MB; Release Build) [SuccessX]

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 24
Set Name Test Cases
All sample_01.txt, sample_02.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt, sample_01.txt, sample_02.txt
Case Name Status Exec Time Memory
sample_01.txt AC 1 ms 256 KB
sample_02.txt AC 1 ms 256 KB
test_01.txt AC 0 ms 256 KB
test_02.txt AC 1 ms 256 KB
test_03.txt AC 1 ms 256 KB
test_04.txt AC 1 ms 256 KB
test_05.txt AC 1 ms 256 KB
test_06.txt AC 1 ms 256 KB
test_07.txt AC 1 ms 256 KB
test_08.txt AC 1 ms 256 KB
test_09.txt AC 1 ms 256 KB
test_10.txt AC 0 ms 256 KB
test_11.txt AC 1 ms 256 KB
test_12.txt AC 1 ms 256 KB
test_13.txt AC 1 ms 256 KB
test_14.txt AC 1 ms 256 KB
test_15.txt AC 1 ms 256 KB
test_16.txt AC 1 ms 256 KB
test_17.txt AC 1 ms 256 KB
test_18.txt AC 1 ms 256 KB
test_19.txt AC 1 ms 256 KB
test_20.txt AC 1 ms 256 KB