↓ Skip to main content
  1. Posts/

uva 1583 B - Digit Generator (暴力)

Note: This article is available in Chinese only. 本文暂无英文版本。 View original

Related

codeforces #519 A A. Multiplication Table (暴力)

·385 words·1 min
A. Multiplication Table time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Let’s consider a table consisting of n rows and n columns. The cell located at the intersection of i-th row and j-th column contains number i × j. The rows and columns are numbered starting from 1.

codeforces 520 A. Pangram (暴力)

·267 words·1 min
给一个字符串,问这个字符串中是否26个字母都出现过(大小写只出现一个就算出现过) 开个布尔数组,扫一遍即可。 嘛,做两道水题放松下== 反正也是要清的。