码迷,mamicode.com
首页 > 其他好文 > 详细

A. Alyona and Numbers

时间:2019-08-28 13:06:46      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:exti   port   contest   rgs   str   tar   ref   oid   problem   

 

http://codeforces.com/contest/682/problem/A

 

 1 import java.util.ArrayList;
 2 import java.util.Scanner;
 3 
 4 public class Main {
 5     public static void main(String[] args) {
 6         Scanner io = new Scanner(System.in);
 7         int n = io.nextInt(), m = io.nextInt();
 8         long ans = 0;
 9         for (int i = 1, y; i <= n; i++) {
10             y = 5 - (i % 5);
11             if (y == 0) y += 5;
12             if (y > m) continue;
13             ans += (m - y) / 5 + 1;
14         }
15         System.out.println(ans);
16     }
17 
18 
19 }

 

A. Alyona and Numbers

标签:exti   port   contest   rgs   str   tar   ref   oid   problem   

原文地址:https://www.cnblogs.com/towerbird/p/11423328.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!