728x90
반응형
https://www.acmicpc.net/problem/2475
using System;
using System.Collections.Generic;
public class Acmicpc02475
{
public static void Main(string[] args)
{
string[] input = Console.ReadLine().Split();
int sum = 0;
foreach (string i in input)
{
sum += (int)Math.Pow(int.Parse(i), 2);
}
Console.Write(sum%10);
}
}
728x90
반응형
'Job Wanted > 코테' 카테고리의 다른 글
[백준] 2558번 - A+B - 2 (C#) (0) | 2024.12.05 |
---|---|
[백준] 2440번 - 별 찍기 - 3 (C#) (0) | 2024.12.04 |
[백준] 10952번 - A+B - 5 (C#) (0) | 2024.12.04 |
[백준] 10871번 - X보다 작은 수 (C#) (0) | 2024.12.03 |
[SWEA] 1234. [S/W 문제해결 기본] 10일차 - 비밀번호 (0) | 2022.11.19 |