Skip to content

Latest commit

 

History

History
73 lines (47 loc) · 1.17 KB

SOLUTION_TEMPLATE.md

File metadata and controls

73 lines (47 loc) · 1.17 KB

C

// problem name: A Simple Task
// problem link: https://codeforces.com/contest/558/problem/E
// contest link: https://codeforces.com/contest/558
// time: (?)
// author: reyad


// other_tags: (?)
// difficulty_level: expert


// put your code here

C++

// problem name: A Simple Task
// problem link: https://codeforces.com/contest/558/problem/E
// contest link: https://codeforces.com/contest/558
// time: (?)
// author: reyad


// other_tags: (?)
// difficulty_level: expert


// put your code here

PYTHON

# problem name: A Simple Task
# problem link: https://codeforces.com/contest/558/problem/E
# contest link: https://codeforces.com/contest/558
# time: (?)
# author: reyad


# other_tags: (?)
# difficulty_level: expert


# put your code here

JAVA

// problem name: A Simple Task
// problem link: https://codeforces.com/contest/558/problem/E
// contest link: https://codeforces.com/contest/558
// time: (?)
// author: reyad

// other_tags: (?)
// difficulty_level: expert


// remember to name the class Solution.java and also the public class Solution as following

public class Solution {
	// put your code here
}