結果

問題 No.524 コインゲーム
ユーザー jjjj
提出日時 2017-06-03 00:18:24
言語 Fortran
(gFortran 14.2.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 150 bytes
コンパイル時間 1,443 ms
コンパイル使用メモリ 29,312 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-02 10:26:12
合計ジャッジ時間 2,411 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
  implicit none
  integer*8::N
  read *,N
  if(MOD(N,4).ne.3) then
     print '("O")'
  else
     print '("X")'
  end if
end program main
0