H

Codeforces Unknown Language Round #1 H "Path Canonization"

問題:http://codeforces.com/problemset/problem/64/Hプラクティス.人数と名前とスコアが与えられる.スコアにしたがって順位づけをした結果を求める.ソートして同じスコアの人を求めてその順番の範囲を求めた上で出力する. コード for {gets stdin t} {…

Codeforces STC #1 H "Multiplication Table"

問題:http://codeforces.com/contest/39/problem/Hプラクティス.nまでの九九をn進数で表示. public class H_MultiplicationTable { public static void main(String[] args) { int n = new java.util.Scanner(System.in).nextInt(); for (int i = 1; i < …