結果
| 問題 |
No.3232 Not Tic Tac Toe
|
| コンテスト | |
| ユーザー |
tokugh
|
| 提出日時 | 2025-08-15 21:31:18 |
| 言語 | Julia (2.11.2) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 431 bytes |
| コンパイル時間 | 121 ms |
| コンパイル使用メモリ | 7,716 KB |
| 実行使用メモリ | 439,920 KB |
| 最終ジャッジ日時 | 2025-08-15 21:32:13 |
| 合計ジャッジ時間 | 6,694 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 TLE * 1 |
| other | WA * 26 TLE * 1 |
ソースコード
toI(s=readline()) = parse(Int,s)
toVI(s=readline()) = parse.(Int,split(s))
rep(f,n) = [f() for _ in 1:n]
@enum YN Yes=1 No=0
function main()
h,w = toVI()
solver(h,w)
end
function solver(h,w)
mat = ['o' 'o' 'x' 'x'; 'x' 'x' 'o' 'o']
for i in 1:h
for j in 1:w
print(mat[mod1(i,2),mod1(j,4)])
end
println()
end
end
@static if endswith(@__FILE__, PROGRAM_FILE)
main()
end
tokugh