Submission #2114067


Source Code Expand

l = input()
s = []
for i in range (5):
    for j in range (5):
        s.append(l[i] + l[j])
N = int(input())
print(s[N - 1])
    


Submission Info

Submission Time
Task A - 25個の文字列
User ningenMe
Language C++14 (GCC 5.4.1)
Score 0
Code Size 143 Byte
Status CE

Compile Error

./Main.cpp:1:1: error: ‘l’ does not name a type
 l = input()
 ^