using System;
namespace _10162
{
class Program
{
static void Main(string[] args)
{
int a = 300;
int b = 60;
int c = 10;
int t = int.Parse(Console.ReadLine());
if (t % 10 != 0)
Console.WriteLine("-1");
else
{
int clickA = t / a;
t = t % a;
int clickB = t / b;
t = t % b;
int clickC = t / c;
Console.WriteLine("{0} {1} {2}", clickA, clickB, clickC);
}
}
}
}
'알고리즘 > 백준 BOJ' 카테고리의 다른 글
[BOJ C#] 10808 알파벳 개수 (0) | 2023.03.14 |
---|---|
[BOJ C#] 4796 캠핑 (0) | 2023.02.01 |
[BOJ C#] 1439 뒤집기 (0) | 2023.01.28 |
[BOJ C#] 5585 거스름돈 (0) | 2023.01.27 |
[BOJ C#] 1259 팰린드롬수 (0) | 2023.01.26 |