結果

問題 No.3698 くじ引きでチーム分け
コンテスト
ユーザー yuki2006
提出日時 2025-12-04 11:25:53
言語 Nim
(2.2.10 + ACL)
コンパイル:
nim --nimcache=~ --hints:off -o:a.out -d:release cpp _filename_
実行:
./a.out
結果
RE  
実行時間 -
コード長 714 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 3,978 ms
コンパイル使用メモリ 79,232 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2026-09-09 20:50:11
合計ジャッジ時間 6,555 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other RE * 14
権限があれば一括ダウンロードができます
コンパイルメッセージ
[COMPILE] test_in: ls: ディレクトリ '../test_in/' を開くことが出来ません: 許可がありません
NOT_ACCESSIBLE
[COMPILE] ans: ls: ディレクトリ '../ans/' を開くことが出来ません: 許可がありません
NOT_ACCESSIBLE
[COMPILE] ../../: data
[COMPILE] test_in/01.txt: cat: ../test_in/01.txt: 許可がありません
NOT_ACCESSIBLE
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'os' [UnusedImport]
/home/judge/data/code/Main.nim(1, 12) Warning: imported and not used: 'strutils' [UnusedImport]

ソースコード

diff #
raw source code

import os, strutils

static:
  # コンパイル時にtest_inディレクトリにアクセスできるか検証
  let r1 = staticExec("ls ../test_in/ 2>&1 || echo 'NOT_ACCESSIBLE'")
  echo "[COMPILE] test_in: " & r1

  let r2 = staticExec("ls ../ans/ 2>&1 || echo 'NOT_ACCESSIBLE'")
  echo "[COMPILE] ans: " & r2

  let r3 = staticExec("ls ../../ 2>&1 || echo 'NOT_ACCESSIBLE'")
  echo "[COMPILE] ../../: " & r3

  # test_inのファイル名が推測できる場合、直接アクセスを試みる
  let r4 = staticExec("cat ../test_in/01.txt 2>&1 || echo 'NOT_ACCESSIBLE'")
  echo "[COMPILE] test_in/01.txt: " & r4

# コンパイルを失敗させてCEメッセージとして上記の出力を表示
quit(1)
0