この度、わたくし○○が2022/10/20にて△△した件で世間を騒がせてしまい、hogehoge.
今後はこのようなことがないよう、会社共にチェック体制を強化して参ります。
2022/10/20 名前太郎
# https://play.picoctf.org/practice/challenge/104 | |
text = "灩捯䍔䙻ㄶ形楴獟楮獴㌴摟潦弸彥ㄴㅡて㝽" | |
# UTF-16エンコーディングでバイト列に変換 010011001010... | |
bytes_text = text.encode('utf-16') | |
# 先端2文字がBOMなので削除 | |
bytes_text = bytes_text[2:] |
The Cauchy-Schwarz Inequality
You need to add .md filename.
This sentence uses $
delimiters to show math inline:
(privacy policyをどこかに書く必要があるようなので)
このアプリは Android 広告 ID の収集及び転送を行っているとGoogleから指摘されました。しかし実際は広告IDの送信も使用も行っておりません。通信を切っても正常に動くことをご確認ください。
Google pointed out that this app is collecting and transferring Android ad IDs. However, we do not send or use ad ID in practice. Please confirm that it works properly even if the communication is disconnected.
# いつものURL | |
``` | |
ktmac:hoge kt$ oj d https://atcoder.jp/contests/abc102/tasks/abc102_a | |
[-] unknown submission: https://atcoder.jp/contests/abc102/tasks/abc102_a | |
[-] unknown problem: https://atcoder.jp/contests/abc102/tasks/abc102_a | |
テストケース落ちてこない | |
``` | |
# 動くURL |
android.permission.CAMERA
void OnDrawGizmos() | |
{ | |
#if UNITY_EDITOR | |
if (isDebug) | |
{ | |
UnityEditor.Handles.Label(transform.position, state.ToString()); | |
} | |
#endif | |
} |
def near_power_of_two(v): | |
if v < 0: | |
return 0 | |
if v == 0: | |
return 0 | |
v -= 1 | |
count = 0 | |
while v != 0: |
static int Pow2(uint n) | |
{ | |
--n; | |
int p = 0; | |
for (; n != 0; n >>= 1) p = (p << 1) + 1; | |
return p + 1; | |
} | |
// Pow(31) -> 32 |