結果
問題 | No.91 赤、緑、青の石 |
ユーザー | むらため |
提出日時 | 2019-01-20 09:27:47 |
言語 | Nim (2.0.2) |
結果 |
AC
|
実行時間 | 695 ms / 5,000 ms |
コード長 | 743 bytes |
コンパイル時間 | 2,481 ms |
コンパイル使用メモリ | 62,804 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 07:17:59 |
合計ジャッジ時間 | 9,997 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 473 ms
6,812 KB |
testcase_01 | AC | 316 ms
6,940 KB |
testcase_02 | AC | 194 ms
6,944 KB |
testcase_03 | AC | 353 ms
6,944 KB |
testcase_04 | AC | 173 ms
6,944 KB |
testcase_05 | AC | 421 ms
6,944 KB |
testcase_06 | AC | 44 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 122 ms
6,940 KB |
testcase_12 | AC | 388 ms
6,940 KB |
testcase_13 | AC | 423 ms
6,944 KB |
testcase_14 | AC | 279 ms
6,940 KB |
testcase_15 | AC | 462 ms
6,944 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 1 ms
6,940 KB |
testcase_25 | AC | 695 ms
6,940 KB |
testcase_26 | AC | 638 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 1 ms
6,944 KB |
testcase_29 | AC | 7 ms
6,944 KB |
testcase_30 | AC | 469 ms
6,940 KB |
testcase_31 | AC | 630 ms
6,940 KB |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 27) Warning: imported and not used: 'math' [UnusedImport] /home/judge/data/code/Main.nim(1, 17) Warning: imported and not used: 'algorithm' [UnusedImport]
ソースコード
import sequtils,algorithm,math proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" .} proc scan(): int = while true: var k = getchar_unlocked() if k < '0': break result = 10 * result + k.ord - '0'.ord template times*(n:int,body) = (for _ in 0..<n: body) template `max=`*(x,y) = x = max(x,y) template `min=`*(x,y) = x = min(x,y) var rgb = @[scan(),scan(),scan()] var ans = 0 while true: rgb = rgb.filterIt(it > 0) if rgb.len == 0 : break # echo rgb,ans let x = rgb.max() let y = rgb.min() if rgb.len == 3: # 3つ rgb = rgb.mapIt(it - y) ans += y elif rgb.len == 2: if x <= 2 : break ans += 1 rgb = @[y-1,x-3] elif rgb.len == 1: ans += x div 5 break echo ans