PAT A1005 Spell It Right 题目描述: Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the s ...
分类:
其他好文 时间:
2019-08-26 14:55:14
阅读次数:
59
Description: A self-dividing number is a number that is divisible by every digit it contains. For example, 128 is a self-dividing number because 128 % ...
分类:
其他好文 时间:
2019-08-22 19:07:03
阅读次数:
80
var rounded = Math.round( number * 10 ) / 10; // round to one digit var rounded = Math.round( number * 100 ) / 100; // round to two digit function rou... ...
分类:
编程语言 时间:
2019-08-20 20:35:23
阅读次数:
96
For any 4-digit integer except the ones with all the digits being the same, if we sort the digits in non-increasing order first, and then in non-decre ...
分类:
其他好文 时间:
2019-08-17 18:00:35
阅读次数:
1440
题目描述 Bessie is playing a number game against Farmer John, and she wants you to help her achieve victory. Game i starts with an integer N_i (1 <= N_i < ...
分类:
其他好文 时间:
2019-08-11 00:37:11
阅读次数:
110
时间不够了,$T2$没切,好烦,T_T…… "prob1:Reign" 考虑分割为间隔为$k$的两个区间,分别跑最大子段和,然后移动中间的$k$区间,左边加入,右边弹出,$O(n)$得解($md$,最大子段和竟然调了一个多小时,我是要退役了吗): "prob6:Chef and Digit Jump ...
分类:
其他好文 时间:
2019-08-07 09:28:41
阅读次数:
123
A cryptarithmetic puzzle is a mathematical game where the digits of some numbers are represented by letters. Each letter represents a unique digit. Fo ...
分类:
其他好文 时间:
2019-08-06 11:01:04
阅读次数:
98
Backward Digit Sums Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 10772 Accepted: 6068 Description FJ and his cows enjoy playing a mental ...
分类:
其他好文 时间:
2019-08-03 16:15:03
阅读次数:
102
题目描述 给定两个正整数a和b,求在[a,b]中的所有整数中,每个数码(digit)各出现了多少次。 给定两个正整数a和b,求在[a,b]中的所有整数中,每个数码(digit)各出现了多少次。 输入格式 输入文件中仅包含一行两个整数a、b,含义如上所述。 输入文件中仅包含一行两个整数a、b,含义如上 ...
分类:
其他好文 时间:
2019-07-26 01:34:48
阅读次数:
90
题目描述 给定两个正整数a和b,求在[a,b]中的所有整数中,每个数码(digit)各出现了多少次。 给定两个正整数a和b,求在[a,b]中的所有整数中,每个数码(digit)各出现了多少次。 输入格式 输入文件中仅包含一行两个整数a、b,含义如上所述。 输入文件中仅包含一行两个整数a、b,含义如上 ...
分类:
其他好文 时间:
2019-07-25 21:53:15
阅读次数:
82