結果
| 問題 | 
                            No.3232 Not Tic Tac Toe
                             | 
                    
| コンテスト | |
| ユーザー | 
                             tokugh
                         | 
                    
| 提出日時 | 2025-08-15 21:34:15 | 
| 言語 | Julia  (2.11.2)  | 
                    
| 結果 | 
                             
                                MLE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 381 bytes | 
| コンパイル時間 | 53 ms | 
| コンパイル使用メモリ | 7,716 KB | 
| 実行使用メモリ | 529,684 KB | 
| 最終ジャッジ日時 | 2025-08-15 21:35:01 | 
| 合計ジャッジ時間 | 42,622 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 1 MLE * 1 | 
| other | WA * 27 | 
ソースコード
toI(s=readline()) = parse(Int,s)
toVI(s=readline()) = parse.(Int,split(s))
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