結果
問題 | No.91 赤、緑、青の石 |
ユーザー | jj |
提出日時 | 2017-01-27 00:09:23 |
言語 | Fortran (gFortran 13.2.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 913 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 31,872 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-06 02:41:01 |
合計ジャッジ時間 | 1,187 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 1 ms
6,944 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 1 ms
6,940 KB |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 1 ms
6,940 KB |
testcase_26 | AC | 1 ms
6,944 KB |
testcase_27 | AC | 1 ms
6,944 KB |
testcase_28 | AC | 1 ms
6,944 KB |
testcase_29 | AC | 1 ms
6,944 KB |
testcase_30 | AC | 1 ms
6,940 KB |
testcase_31 | WA | - |
ソースコード
program main implicit none integer*8::r,g,b,tmp,diff integer*8::i,j data j/0/ read *,r,g,b j=MIN(MIN(r,g),b) r = r - j g = g - j b = b - j call sort(r,g,b) if(r.eq.0) then print '(i0)',j return else if(g.eq.0) then print '(i0)',j+r/4 return end if if(r.ge.3*g) then print '(i0)',j+g+(r-3*g)/5 return end if diff = (r - g)/2 j = j + diff r = r - 3*diff g = g - diff diff = MIN(r,g)/4 j = j + diff*2 r = r - diff*4 g = g - diff*4 call sort(r,g,b) if(r.gt.3.and.g.gt.1) then j = j + 1 end if print '(i0)',j contains subroutine sort(r,g,b) integer*8::r,g,b,tmp if(r.lt.g) then tmp = g g = r r = tmp end if if(g.lt.b) then tmp = g g = b b = tmp end if if(r.lt.g) then tmp = g g = r r = tmp end if end subroutine sort end program main