結果
問題 | No.43 野球の試合 |
ユーザー | yuppe19 😺 |
提出日時 | 2015-05-01 08:29:02 |
言語 | Nim (2.2.0) |
結果 |
AC
|
実行時間 | 21 ms / 5,000 ms |
コード長 | 887 bytes |
コンパイル時間 | 3,586 ms |
コンパイル使用メモリ | 68,024 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-29 01:54:08 |
合計ジャッジ時間 | 4,289 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 21 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
コンパイルメッセージ
/home/judge/data/code/Main.nim(32, 17) Warning: Deprecated since v0.20, use 'initHashSet'; initSet is deprecated [Deprecated] /home/judge/data/code/Main.nim(1, 28) Warning: imported and not used: 'math' [UnusedImport] /home/judge/data/code/Main.nim(1, 18) Warning: imported and not used: 'sequtils' [UnusedImport]
ソースコード
import strutils, sequtils, math, sets var fumei = 0 n = stdin.readLine.parseInt strs = newSeq[string](n) for i in 0..n-1: strs[i] = stdin.readLine for i in 0..n-1: for j in i+1..n-1: if strs[i][j] == '-': fumei += 1 var lag = 19970121 # for lágmark>(ΦωΦ) for m in 0..(1 shl fumei)-1: var score = newSeq[int](n) for i in 0..n-1: for j in 0..n-1: if strs[i][j] == 'o': score[i] += 1 var p = 0 for i in 0..n-1: for j in i+1..n-1: if strs[i][j] == '-': if (((m shr p) and 1) == 1): score[i] += 1 else: score[j] += 1 p += 1 var upper = initSet[int]() for i in 0..n-1: if score[0] < score[i]: upper.incl(score[i]) lag = min(lag, upper.len+1) lag.echo