에서 AtCoder Beginners Selection (ABC083B - Some Sums)
준비
C#에서 AtCoder 데뷔 준비
나중에 AtCoder Beginners Selection을 해 보았습니다.
문제문
ABC083B - Some Sums
h tps // 아 t 여기 r. jp / sts / abs / sks / abc083_b
제출 결과
using System;
class Program
{
static void Main(string[] args)
{
string[] input = Console.ReadLine().Split(' ');
int n = int.Parse(input[0]);
int a = int.Parse(input[1]);
int b = int.Parse(input[2]);
int souwa = 0;
for (int i = 1; i <= n; i++)
{
// 強引だけれど結果オーライ
int i10000 = i / 10000;
int i1000 = (i % 10000) / 1000;
int i100 = (i % 1000) / 100;
int i10 = (i % 100) / 10;
int i1 = i % 10;
int wa = i10000 + i1000 + i100 + i10 + i1;
if ((wa >= a) && (wa <= b))
{
souwa += i;
}
}
Console.WriteLine($"{souwa}");
}
}
테스트 실행
Reference
이 문제에 관하여(에서 AtCoder Beginners Selection (ABC083B - Some Sums)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/azumabashi/items/70abad1412f8e0e0a69e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)