Advertisement
Guest User

serve.cfg

a guest
Oct 27th, 2012
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. # -*- coding: UTF-8 -*-
  2. # $Id$
  3. contest_id = 1500
  4.  
  5. contest_time = 0
  6. score_system = acm
  7. board_fog_time = 0
  8. board_unfog_time = 0
  9. standings_locale = "ru"
  10.  
  11. compile_dir = "../../compile/var/compile"
  12.  
  13. team_enable_src_view
  14. team_enable_rep_view
  15. team_enable_ce_view
  16. disable_clars
  17. ignore_compile_errors
  18. problem_navigation
  19.  
  20.  
  21.  
  22. external_xml_update_time = 30
  23.  
  24.  
  25. use_ac_not_ok
  26. rounding_mode = floor
  27. cr_serialization_key = 22723
  28. enable_runlog_merge
  29. secure_run
  30. enable_memory_limit_error
  31. advanced_layout
  32. enable_l10n
  33. team_download_time = 0
  34. cpu_bogomips = 6825
  35.  
  36. [language]
  37. id = 1
  38. short_name = "fpc"
  39. long_name = "Free Pascal 2.6.0"
  40. src_sfx = ".pas"
  41.  
  42. [language]
  43. id = 2
  44. short_name = "gcc"
  45. long_name = "GNU C 4.7.2"
  46. src_sfx = ".c"
  47.  
  48. [language]
  49. id = 3
  50. short_name = "g++"
  51. long_name = "GNU C++ 4.7.2"
  52. src_sfx = ".cpp"
  53.  
  54. [language]
  55. id = 8
  56. short_name = "dcc"
  57. long_name = "Borland Delphi 6 (Kylix) 14.5"
  58. arch = "linux-shared-32"
  59. src_sfx = ".pas"
  60.  
  61. [language]
  62. id = 18
  63. short_name = "javac"
  64. long_name = "Java JDK 1.6.0_24"
  65. arch = "java"
  66. src_sfx = ".java"
  67. exe_sfx = ".jar"
  68.  
  69. [language]
  70. id = 23
  71. short_name = "python3"
  72. long_name = "Python 3.2.3"
  73. arch = "linux-shared"
  74. src_sfx = ".py"
  75.  
  76. [problem]
  77. abstract
  78. short_name = "Generic"
  79. test_dir = "%Ps"
  80. test_pat = "%02d"
  81. use_corr
  82. corr_dir = "%Ps"
  83. corr_pat = "%02d.a"
  84. info_dir = "%Ps"
  85. tgz_dir = "%Ps"
  86. time_limit = 1
  87. real_time_limit = 5
  88. max_vm_size = 64M
  89. check_cmd = "check"
  90.  
  91. [problem]
  92. id = 1
  93. super = "Generic"
  94. short_name = "A"
  95. long_name = "A+B"
  96. input_file = "aplusb.in"
  97. output_file = "aplusb.out"
  98. standard_checker = "cmp_int"
  99.  
  100. [tester]
  101. name = Generic
  102. arch = ""
  103. abstract
  104. no_core_dump
  105. enable_memory_limit_error
  106. kill_signal = KILL
  107. memory_limit_type = "default"
  108. secure_exec_type = "static"
  109. clear_env
  110. start_env = "PATH=/usr/local/bin:/usr/bin:/bin"
  111. start_env = "HOME"
  112.  
  113. [tester]
  114. name = Linux-shared
  115. arch = "linux-shared"
  116. abstract
  117. no_core_dump
  118. enable_memory_limit_error
  119. kill_signal = KILL
  120. memory_limit_type = "default"
  121. secure_exec_type = "dll"
  122. clear_env
  123. start_env = "PATH=/usr/local/bin:/usr/bin:/bin"
  124. start_env = "HOME"
  125.  
  126. [tester]
  127. name = Linux-shared-32
  128. arch = "linux-shared-32"
  129. abstract
  130. no_core_dump
  131. enable_memory_limit_error
  132. kill_signal = KILL
  133. memory_limit_type = "default"
  134. secure_exec_type = "dll32"
  135. clear_env
  136. start_env = "PATH=/usr/local/bin:/usr/bin:/bin"
  137. start_env = "HOME"
  138.  
  139. [tester]
  140. name = Linux-java
  141. arch = "java"
  142. abstract
  143. no_core_dump
  144. kill_signal = TERM
  145. memory_limit_type = "java"
  146. secure_exec_type = "java"
  147. start_cmd = "runjava"
  148. start_env = "LANG=C"
  149. start_env = "EJUDGE_PREFIX_DIR"
  150.  
  151. [tester]
  152. any
  153. super = Generic
  154.  
  155. [tester]
  156. any
  157. super = Linux-shared
  158. arch = linux-shared
  159.  
  160. [tester]
  161. any
  162. super = Linux-shared-32
  163. arch = linux-shared-32
  164.  
  165. [tester]
  166. any
  167. super = Linux-java
  168. arch = java
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement