結果
問題 |
No.3232 Not Tic Tac Toe
|
ユーザー |
![]() |
提出日時 | 2025-08-30 03:19:47 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 10 ms / 2,000 ms |
コード長 | 199 bytes |
コンパイル時間 | 10,934 ms |
コンパイル使用メモリ | 242,632 KB |
実行使用メモリ | 6,272 KB |
最終ジャッジ日時 | 2025-08-30 03:20:07 |
合計ジャッジ時間 | 13,859 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 27 |
ソースコード
package main import . "fmt" import . "strings" func main() { var h,w int Scan(&h,&w) s := Repeat("OOXX", w) t := s[2:] s = s[:w] t = t[:w] for ; h > 0 ; h-- { Println(s) s, t = t, s } }